26 lines
672 B
Makefile
26 lines
672 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $Id: Makefile,v 1.26 1997/09/28 09:07:34 markm Exp $
|
|
|
|
SUBDIR= atrun bootpd comsat fingerd ftpd getNAME getty \
|
|
mail.local makekey mknetid named-xfer revnetgroup rexecd rlogind \
|
|
rpc.rquotad \
|
|
rpc.rstatd rpc.rusersd rpc.rwalld rpc.sprayd rshd talkd tftpd uucpd \
|
|
xtend ypxfr
|
|
|
|
.if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
|
|
# make release needs both
|
|
SUBDIR+=telnetd
|
|
.endif
|
|
|
|
# Present but disabled: kpasswdd
|
|
|
|
.if ${MACHINE} == "hp300"
|
|
SUBDIR+=rbootd
|
|
.elif ${MACHINE} == "i386"
|
|
SUBDIR+=rbootd
|
|
.elif ${MACHINE} == "luna68k"
|
|
SUBDIR+=rbootd
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|