b1ebdd50cb
These are the start of a lot of work to clean up the FreeBSD eBones code. these changes include, but are not limited to: - Create prototypes for all the library routines - Make all the libraries compile clean with -Wall set - Fix numerous small bugs shown up in the above process - Prepare the code for libdes's removal to secure/ - add register, registerd and make_keypair to the make Lots more will follow in days to come. OK'ed by: rgrimes
20 lines
499 B
Makefile
20 lines
499 B
Makefile
# $Id: Makefile,v 1.1 1995/07/18 16:36:53 mark Exp $
|
|
|
|
BINDIR= /usr/bin
|
|
PROG= kadmin
|
|
SRCS= kadmin.c kadmin_cmds.c
|
|
CLEANFILES+= kadmin_cmds.c
|
|
CFLAGS+= -DPOSIX -I${.CURDIR}/../include -I${KRBOBJDIR}
|
|
CFLAGS+= -I${.CURDIR}/../libkadm
|
|
LDADD+= -L${KADMOBJDIR} -lkadm -L${KRBOBJDIR} -lkrb -L${DESOBJDIR} -ldes
|
|
LDADD+= -lss -lcom_err
|
|
NOMAN= # man page is in ../man
|
|
|
|
kadmin_cmds.c: kadmin_cmds.ct
|
|
test -e kadmin_cmds.ct || ln -s ${.CURDIR}/kadmin_cmds.ct .
|
|
mk_cmds kadmin_cmds.ct
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
|