mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 15:35:10 -04:00
- 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.
9 lines
248 B
Makefile
9 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>
|