mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 20:54:13 +01:00
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
321 B
Makefile
12 lines
321 B
Makefile
# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
|
|
# $Id: Makefile,v 1.3 1995/07/18 16:37:47 mark Exp $
|
|
|
|
PROG= kerberos
|
|
SRCS= kerberos.c cr_err_reply.c
|
|
CFLAGS+=-DKERBEROS -DDEBUG -I${.CURDIR}/../include -Wall
|
|
DPADD= ${LIBKDB} ${LIBKRB}
|
|
LDADD= -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes
|
|
NOMAN= noman
|
|
|
|
.include <bsd.prog.mk>
|