freebsd-dev/kerberosIV/usr.bin/kinit/Makefile
Mark Murray 393e542f62 Link this against -lcrypt. In the case where the user has no key available
on the keyserver, the local kinit will blow chunks when it tries a
crypt(3) and finds it unavailable.
1997-10-24 16:27:46 +00:00

19 lines
395 B
Makefile

# $Id$
PROG= kinit
MAN1= ${KRB4DIR}/man/kinit.1
SRCS= kinit.c
CFLAGS+= -I${KRB4DIR}/include \
-I${KRB4DIR}/lib/roken \
-I${KRB4DIR}/lib/kadm \
-I${KRB4DIR}/lib/kdb \
-I${KRB4DIR}/lib/krb \
-I${KRB4DIR}/kuser
LDADD= -L${ROKENOBJDIR} -lroken \
-L${KRBOBJDIR} -lkrb -ldes -lcrypt
DPADD= ${LIBROKEN} ${LIBKRB} ${LIBDES} ${LIBCRYPT}
.include <bsd.prog.mk>
.PATH: ${KRB4DIR}/kuser