diff options
author | Mark Murray <markm@FreeBSD.org> | 1997-09-24 20:37:15 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1997-09-24 20:37:15 +0000 |
commit | 5f6559a29bc10cb4b349350f3f4c4cbd8cf71d79 (patch) | |
tree | 1b8c28a3885f5c446be78381805f4d3dd6af87b5 /kerberosIV/usr.sbin/kadmind | |
parent | 81c9c0b61a47a2577550ba49b2e509b885cf0570 (diff) |
Initial import of the new kerberosIV Makefiles.
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 ;-)
Notes
Notes:
svn path=/cvs2svn/branches/MARKM/; revision=29815
Diffstat (limited to 'kerberosIV/usr.sbin/kadmind')
-rw-r--r-- | kerberosIV/usr.sbin/kadmind/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/kerberosIV/usr.sbin/kadmind/Makefile b/kerberosIV/usr.sbin/kadmind/Makefile new file mode 100644 index 000000000000..1ee92b9e2c16 --- /dev/null +++ b/kerberosIV/usr.sbin/kadmind/Makefile @@ -0,0 +1,29 @@ +# $Id$ + +PROG= kadmind +MAN8= ${KRB4DIR}/man/kadmind.8 +SRCS= kadm_server.c kadm_funcs.c admin_server.c kadm_ser_wrap.c \ + pw_check.c +CFLAGS+= -I${KRB4DIR}/include \ + -I${KRB4DIR}/lib/roken \ + -I${KRB4DIR}/lib/sl \ + -I${KRB4DIR}/lib/acl \ + -I${KRB4DIR}/lib/kadm \ + -I${KRB4DIR}/lib/kdb \ + -I${KRB4DIR}/lib/krb \ + -I${KRB4DIR}/kadmin \ + -I${KADMOBJDIR} \ + -I${KRBOBJDIR} \ + -I${.CURDIR}/../include +LDADD= -L${ROKENOBJDIR} -lroken -L${SLOBJDIR} -lsl \ + -L${ACLOBJDIR} -lacl -L${KADMOBJDIR} -lkadm \ + -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb \ + -ldes -lcom_err +DPADD= ${LIBROKEN} ${LIBSL} ${LIBACL} ${LIBKADM} ${LIBKDB} ${LIBKRB} \ + ${LIBDES} ${LIBCOM_ERR} + +.include <bsd.prog.mk> + +.PATH: ${KRB4DIR}/kadmin + +beforedepend all: ${KADMOBJDIR}/kadm_err.h ${KRBOBJDIR}/krb_err.h |