02c78a9c21
compile 1) remove rubbish no longer needed 2) correct existing Makefiles 3) add new makefiles where needed 4) correct code, header files and man pages where necessary PLEASE NOTE - after this you will need to make install in eBones/include, and mamake obj depend all install in eBones/lib before doing a make obj depend all install in eBones/. (I am going 6to fix src/Makefile next) PS - I hate slow international links - apologies for all the typos
13 lines
280 B
Makefile
13 lines
280 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/1/93
|
|
# $id$
|
|
|
|
PROG= make_keypair
|
|
MAN8= make_keypair.8
|
|
CFLAGS+=-DKERBEROS -I${.CURDIR}/../../include \
|
|
-I${.CURDIR}/../../usr.bin/register -Wall
|
|
DPADD= ${LIBKDB} ${LIBKRB} ${LIBDES}
|
|
LDADD= -lkdb -lkrb -ldes
|
|
BINDIR= /usr/sbin
|
|
|
|
.include <bsd.prog.mk>
|