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.
11 lines
214 B
Makefile
11 lines
214 B
Makefile
# from: @(#)Makefile 5.4 (Berkeley) 7/25/90
|
|
# $Id: Makefile,v 1.3 1995/07/18 16:40:32 mark Exp $
|
|
|
|
MAN1= kerberos.1
|
|
MAN3= des_crypt.3
|
|
MAN5= krb.conf.5 krb.realms.5
|
|
|
|
MLINKS+=des_crypt.3 des.3
|
|
|
|
.include <bsd.prog.mk>
|