0346639d07
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
18 lines
430 B
Makefile
18 lines
430 B
Makefile
# $Id: Makefile,v 1.1.1.1 1997/09/24 20:37:14 markm Exp $
|
|
|
|
PROG= kip
|
|
NOMAN= true
|
|
SRCS= kip.c common.c
|
|
CFLAGS+= -I${KRB4DIR}/include \
|
|
-I${KRB4DIR}/lib/roken \
|
|
-I${KRB4DIR}/lib/krb \
|
|
-I${KRB4DIR}/kadmin \
|
|
-I${KRBOBJDIR} \
|
|
-I${.CURDIR}/../include
|
|
LDADD= -L${ROKENOBJDIR} -lroken -L${KRBOBJDIR} -lkrb -ldes -lcrypt
|
|
DPADD= ${LIBROKEN} ${LIBKRB} ${LIBDES} ${LIBCRYPT}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB4DIR}/appl/kip
|