1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6SUBDIR= ${_atf} \ 7 ${_atrun} \ 8 ${_blacklistd-helper} \ 9 ${_comsat} \ 10 ${_dma} \ 11 getty \ 12 ${_mail.local} \ 13 ${_makewhatis.local} \ 14 ${_mknetid} \ 15 ${_pppoed} \ 16 rc \ 17 revnetgroup \ 18 ${_rlogind} \ 19 rpc.rquotad \ 20 rpc.rstatd \ 21 rpc.rusersd \ 22 rpc.rwalld \ 23 rpc.sprayd \ 24 ${_rshd} \ 25 ${_rtld-elf} \ 26 save-entropy \ 27 ${_smrsh} \ 28 ${_telnetd} \ 29 ${_tests} \ 30 ${_tftp-proxy} \ 31 ulog-helper \ 32 ${_ypxfr} 33 34.if ${MK_AT} != "no" 35_atrun= atrun 36.endif 37 38.if ${MK_BLACKLIST} != "no" 39_blacklistd-helper+= blacklistd-helper 40.endif 41 42.if ${MK_BOOTPD} != "no" 43SUBDIR+= bootpd 44.endif 45 46.if ${MK_FINGER} != "no" 47SUBDIR+= fingerd 48.endif 49 50.if ${MK_FTP} != "no" 51SUBDIR+= ftpd 52.endif 53 54.if ${MK_MAIL} != "no" 55_comsat= comsat 56.endif 57 58.if ${MK_DMAGENT} != "no" 59_dma= dma 60.endif 61 62.if ${MK_NIS} != "no" 63_mknetid= mknetid 64_ypxfr= ypxfr 65.endif 66 67.if ${MK_NETGRAPH} != "no" 68_pppoed= pppoed 69.endif 70 71.if ${MK_PF} != "no" 72_tftp-proxy= tftp-proxy 73.endif 74 75.if !defined(NO_PIC) && !defined(NO_RTLD) 76_rtld-elf= rtld-elf 77.endif 78 79.if ${MK_RBOOTD} != "no" 80SUBDIR+= rbootd 81.endif 82 83.if ${MK_SENDMAIL} != "no" 84_mail.local= mail.local 85_smrsh= smrsh 86.endif 87 88.if ${MK_MAN_UTILS} != "no" 89_makewhatis.local= makewhatis.local 90.endif 91 92.if ${MK_TALK} != "no" 93SUBDIR+= talkd 94.endif 95 96.if ${MK_TCP_WRAPPERS} != "no" 97SUBDIR+= tcpd 98.endif 99 100.if ${MK_TELNET} != "no" 101_telnetd= telnetd 102.endif 103 104.if ${MK_TFTP} != "no" 105SUBDIR+= tftpd 106.endif 107 108.if ${MK_TESTS} != "no" 109_atf= atf 110_tests= tests 111.endif 112 113.include <bsd.arch.inc.mk> 114 115.include <bsd.subdir.mk> 116