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
19 lines
464 B
Makefile
19 lines
464 B
Makefile
# $Id: Makefile,v 1.1.1.1 1997/09/24 20:37:14 markm Exp $
|
|
|
|
PROG= kprop
|
|
MAN8= ${KRB4DIR}/man/kprop.8
|
|
SRCS= kprop.c
|
|
CFLAGS+= -I${KRB4DIR}/include \
|
|
-I${KRB4DIR}/lib/roken \
|
|
-I${KRB4DIR}/lib/kdb \
|
|
-I${KRB4DIR}/lib/krb \
|
|
-I${KRB4DIR}/slave \
|
|
-I${INCLOBJDIR} \
|
|
-I${.CURDIR}/../include
|
|
LDADD= -L${ROKENOBJDIR} -lroken -L${KRBOBJDIR} -lkrb -ldes -lcrypt
|
|
DPADD= ${LIBROKEN} ${LIBKRB} ${LIBDES} ${LIBCRYPT}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB4DIR}/slave
|