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
353 B
Makefile
15 lines
353 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/1/93
|
|
# $Id: Makefile,v 1.5 1995/07/18 16:41:22 mark Exp $
|
|
|
|
PROG= register
|
|
SRCS= register.c
|
|
CFLAGS+=-DCRYPT -DDEBUG -DKERBEROS -I${.CURDIR}/../include -Wall
|
|
.PATH: ${.CURDIR}/../../usr.bin/rlogin
|
|
DPADD= ${LIBKRB}
|
|
LDADD= -L${KRBOBJDIR} -lkrb -ldes -lcrypt
|
|
BINDIR= /usr/bin
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
.include <bsd.prog.mk>
|