diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-11-15 09:22:02 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-11-15 09:22:02 +0000 |
commit | be39c34b2c25ddfd8e96f8f858f741d4dda80e4b (patch) | |
tree | 28e6b696e31e41ea3f6bca2bb6afeb78cdf065ac /kerberosIV/kadmin | |
parent | cd469d033a67eb50c1c0ee27c10fef54f84c2e8f (diff) |
libss and mk_cmds are moving into the main tree
Diffstat (limited to 'kerberosIV/kadmin')
-rw-r--r-- | kerberosIV/kadmin/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/kerberosIV/kadmin/Makefile b/kerberosIV/kadmin/Makefile index 0c29071384c..8ab7a07a8e4 100644 --- a/kerberosIV/kadmin/Makefile +++ b/kerberosIV/kadmin/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/06/02 14:42:01 niklas Exp $ +# $Id: Makefile,v 1.3 1996/11/15 09:21:27 downsj Exp $ PROG= kadmin SRCS= kadmin.c kadmin_cmds.c maketime.c @@ -13,11 +13,7 @@ CFLAGS+=-I${.CURDIR}/../krb/${__objdir} .else CFLAGS+=-I${.CURDIR}/../krb .endif -.if exists(${.CURDIR}/../ss/${__objdir}) -CFLAGS+=-I${.CURDIR}/../ss/${__objdir} -.else -CFLAGS+=-I${.CURDIR}/../ss -.endif +CFLAGS+=-I${.CURDIR}/../../lib/libss LDADD+= -lkadm -lkrb -ldes -lss -lcom_err DPADD+= ${LIBKADM} ${LIBKRB} ${LIBDES} ${LIBSS} ${LIBCOM_ERR} CLEANFILES+= kadmin_cmds.c @@ -25,7 +21,7 @@ MAN= kadmin.8 kadmin_cmds.c: kadmin_cmds.ct test -e kadmin_cmds.ct || ln -s ${.CURDIR}/kadmin_cmds.ct . - ${MK_CMDS} kadmin_cmds.ct + mk_cmds kadmin_cmds.ct -test -h kadmin_cmds.ct && rm kadmin_cmds.ct .include <bsd.prog.mk> |