mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 05:49:27 +00:00
12 lines
344 B
Makefile
12 lines
344 B
Makefile
# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
|
|
# $Id: Makefile,v 1.1.1.1 1994/09/30 14:49:57 csgr Exp $
|
|
|
|
PROG= kerberos
|
|
SRCS= kerberos.c cr_err_reply.c
|
|
CFLAGS+=-DKERBEROS -DDEBUG -I${.CURDIR}/../include
|
|
DPADD= ${LIBKDB} ${LIBKRB} ${LIBDES}
|
|
LDADD= -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -L${DESOBJDIR} -ldes
|
|
NOMAN= noman
|
|
|
|
.include <bsd.prog.mk>
|