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/kprop/Makefile | |
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/kprop/Makefile')
-rw-r--r-- | kerberosIV/usr.sbin/kprop/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kerberosIV/usr.sbin/kprop/Makefile b/kerberosIV/usr.sbin/kprop/Makefile new file mode 100644 index 000000000000..1fc0515d0a44 --- /dev/null +++ b/kerberosIV/usr.sbin/kprop/Makefile @@ -0,0 +1,18 @@ +# $Id$ + +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 +DPADD= ${LIBROKEN} ${LIBKRB} ${LIBDES} + +.include <bsd.prog.mk> + +.PATH: ${KRB4DIR}/slave |