d79d4a7ced
- 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.
12 lines
389 B
Makefile
12 lines
389 B
Makefile
# $Id: Makefile,v 1.1 1995/07/18 16:36:59 mark Exp $
|
|
|
|
PROG= kadmind
|
|
SRCS= admin_server.c kadm_funcs.c kadm_ser_wrap.c kadm_server.c
|
|
CFLAGS+=-DPOSIX -I${.CURDIR}/../include -I${KRBOBJDIR} \
|
|
-I${.CURDIR}/../libkadm -I${KADMOBJDIR} -Wall
|
|
LDADD+= -L${KADMOBJDIR} -lkadm -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb \
|
|
-ldes -L${ACLOBJDIR} -lacl -lcom_err
|
|
MAN8= kadmind.8
|
|
|
|
.include <bsd.prog.mk>
|