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.
12 lines
284 B
Makefile
12 lines
284 B
Makefile
# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
|
|
# $Id: Makefile,v 1.1.1.1 1995/08/03 07:37:19 mark Exp $
|
|
|
|
PROG= kpropd
|
|
CFLAGS+=-I${.CURDIR}/../include -I${.CURDIR}/../kprop -Wall
|
|
DPADD= ${LIBKRB}
|
|
LDADD= -L${KRBOBJDIR} -lkrb -ldes
|
|
BINDIR= /usr/libexec
|
|
NOMAN= noman
|
|
|
|
.include <bsd.prog.mk>
|