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.
10 lines
258 B
Makefile
10 lines
258 B
Makefile
# $Id: Makefile,v 1.1 1995/07/18 16:40:09 mark Exp $
|
|
|
|
PROG= ksrvutil
|
|
SRCS= ksrvutil.c
|
|
CFLAGS+= -I${.CURDIR}/../include -I${.CURDIR}/../libkadm -Wall
|
|
LDADD+= -L${KADMOBJDIR} -lkadm -L${KRBOBJDIR} -lkrb -ldes -lcom_err
|
|
MAN8= ksrvutil.8
|
|
|
|
.include <bsd.prog.mk>
|