1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
31 lines
690 B
Makefile
31 lines
690 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
SUBDIR= atrun bootpd comsat fingerd ftpd getNAME getty lfs_cleanerd \
|
|
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 !exists(../eBones) || defined(NOSECURE) || !defined(MAKE_EBONES)
|
|
SUBDIR+=telnetd
|
|
.else
|
|
.if defined(RELEASEDIR)
|
|
# make release needs both
|
|
SUBDIR+=telnetd
|
|
.endif
|
|
SUBDIR+= ../eBones/libexec/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>
|