5f6559a29b
I will follow up with the userland sources over the next few days. The impatient of you can play with this, but you do this without support or blessing until I am finished ;-)
20 lines
494 B
Makefile
20 lines
494 B
Makefile
# $Id$
|
|
|
|
PROG= ksrvutil
|
|
MAN8= ${KRB4DIR}/man/ksrvutil.8
|
|
SRCS= ksrvutil.c ksrvutil_get.c
|
|
CFLAGS+= -I${KRB4DIR}/include \
|
|
-I${KRB4DIR}/lib/roken \
|
|
-I${KRB4DIR}/lib/sl \
|
|
-I${KRB4DIR}/lib/krb \
|
|
-I${KRB4DIR}/admin \
|
|
-I${.CURDIR}/../include
|
|
LDADD= -L${ROKENOBJDIR} -lroken -L${KADMOBJDIR} -lkadm \
|
|
-L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes -lcom_err
|
|
DPADD= ${LIBROKEN} ${LIBKADM} ${LIBKDB} ${LIBKRB} \
|
|
${LIBDES} ${LIBCOM_ERR}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB4DIR}/kadmin
|