mirror of
https://github.com/opnsense/src.git
synced 2026-03-19 17:29:02 -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.
19 lines
473 B
Makefile
19 lines
473 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 -Wall
|
|
LDADD+= -L${KADMOBJDIR} -lkadm -L${KRBOBJDIR} -lkrb -ldes
|
|
LDADD+= -lss -lcom_err
|
|
MAN8= kadmin.8
|
|
|
|
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>
|
|
|
|
|