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.
15 lines
414 B
Makefile
15 lines
414 B
Makefile
# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
|
|
# $Id: Makefile,v 1.4 1995/07/18 16:34:47 mark Exp $
|
|
|
|
LIB= acl
|
|
SHLIB_MAJOR= 2
|
|
SHLIB_MINOR= 0
|
|
CFLAGS+=-DDEBUG -DKERBEROS -I${.CURDIR}/../include -Wall
|
|
SRCS= acl_files.c
|
|
MAN3= acl_check.3
|
|
MLINKS= acl_check.3 acl_canonicalize_principal.3 \
|
|
acl_check.3 acl_exact_match.3 acl_check.3 acl_add.3 \
|
|
acl_check.3 acl_delete.3 acl_check.3 acl_initialize.3
|
|
|
|
.include <bsd.lib.mk>
|