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.
22 lines
518 B
Makefile
22 lines
518 B
Makefile
#
|
|
# Copyright (c) 1990 The Regents of the University of California.
|
|
# All rights reserved.
|
|
#
|
|
# %sccs.include.redist.sh
|
|
#
|
|
# @(#)Makefile 8.1 (Berkeley) 6/1/93
|
|
#
|
|
# $Id: Makefile,v 1.4 1995/07/18 16:41:24 mark Exp $
|
|
|
|
PROG= registerd
|
|
SRCS= registerd.c
|
|
CFLAGS+=-DCRYPT -DKERBEROS -I${.CURDIR}/../register \
|
|
-I${.CURDIR}/../include -Wall
|
|
.PATH: ${.CURDIR}/../../usr.bin/rlogin
|
|
DPADD= ${LIBKDB} ${LIBKRB}
|
|
LDADD= -L${KDBOBJDIR} -lkdb -L${KRBOBJDIR} -lkrb -ldes
|
|
MAN8= registerd.8
|
|
BINDIR= /usr/libexec
|
|
|
|
.include <bsd.prog.mk>
|