2539acf77b
- Get all functions prototyped or at least defined before use. - Make code compile (Mostly) clean with -Wall set - Start to reduce the degree to which DES aka libdes is built in. - get all functions to the same uniform standard of definition: int foo(a, b) int a; int *b; { : } - fix numerous bugs exposed by above processes. Note - this replaces the previous work which used an unpopular function definition style.
10 lines
248 B
Makefile
10 lines
248 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/1/93
|
|
|
|
PROG= make_keypair
|
|
MAN8= make_keypair.8
|
|
CFLAGS+=-DKERBEROS -I${.CURDIR}/../include -I${.CURDIR}/../register -Wall
|
|
DPADD= ${LIBKRB}
|
|
LDADD= -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes
|
|
|
|
.include <bsd.prog.mk>
|