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.
28 lines
592 B
Makefile
28 lines
592 B
Makefile
# @(#)Makefile 5.4 (Berkeley) 5/7/91
|
|
# $Id: Makefile,v 1.5 1995/07/18 16:34:59 mark Exp $
|
|
|
|
LIB= des
|
|
SRCS= cbc_cksm.c cbc_enc.c ecb_enc.c enc_read.c enc_writ.c pcbc_enc.c \
|
|
qud_cksm.c rand_key.c read_pwd.c set_key.c str2key.c \
|
|
cfb_enc.c 3ecb_enc.c ofb_enc.c 3cbc_enc.c
|
|
#MAN1= des.1
|
|
#MAN3= des.3
|
|
|
|
#LINKS= crypt
|
|
CFLAGS+= -DDES_ENCRYPT -DKRBDES_ENCRYPT
|
|
|
|
# Kerberos 4?
|
|
#CFLAGS+=-DKRB4
|
|
#SRCS+= kerberos.c
|
|
|
|
# Kerberos 5?
|
|
#CFLAGS+= -DKRB5
|
|
#SRCS+= kerberos5.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/include -DAUTHENTICATE
|
|
SHLIB_MAJOR?= 2
|
|
SHLIB_MINOR?= 0
|
|
|
|
.include "/usr/src/lib/Makefile.inc"
|
|
.include <bsd.lib.mk>
|