b1ebdd50cb
These are the start of a lot of work to clean up the FreeBSD eBones code. these changes include, but are not limited to: - Create prototypes for all the library routines - Make all the libraries compile clean with -Wall set - Fix numerous small bugs shown up in the above process - Prepare the code for libdes's removal to secure/ - add register, registerd and make_keypair to the make Lots more will follow in days to come. OK'ed by: rgrimes
21 lines
464 B
Makefile
21 lines
464 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
|
|
.PATH: ${.CURDIR}/../../usr.bin/rlogin
|
|
DPADD= ${LIBKDB} ${LIBKRB} ${LIBDES}
|
|
LDADD= -lkdb -lkrb -ldes
|
|
MAN8= registerd.8
|
|
BINDIR= /usr/libexec
|
|
|
|
.include <bsd.prog.mk>
|