freebsd-dev/kerberosIV/usr.sbin/kdb_init/Makefile
Mark Murray 0346639d07 Link everything against libcrypt. ELF builds complain without it.
Clean up the master makefile a bit and add a "dekerberise" target
for those who have shot themselves in the foot.

Thanks to:	Randy Bush
1999-01-25 06:49:43 +00:00

20 lines
510 B
Makefile

# $Id: Makefile,v 1.2 1997/10/02 15:03:21 markm Exp $
PROG= kdb_init
MAN8= ${KRB4DIR}/man/kdb_init.8
SRCS= kdb_init.c
CFLAGS+= -I${KRB4DIR}/include \
-I${KRB4DIR}/lib/roken \
-I${KRB4DIR}/lib/kadm \
-I${KRB4DIR}/lib/kdb \
-I${KRB4DIR}/lib/krb \
-I${KRB4DIR}/admin \
-I${.CURDIR}/../include
LDADD= -L${ROKENOBJDIR} -lroken \
-L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes -lcrypt
DPADD= ${LIBROKEN} ${LIBKDB} ${LIBKRB} ${LIBDES} ${LIBCRYPT}
.include <bsd.prog.mk>
.PATH: ${KRB4DIR}/admin