1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6SUBDIR= ${_atf} \ 7 ${_atrun} \ 8 bootpd \ 9 ${_casper} \ 10 ${_comsat} \ 11 ${_dma} \ 12 ${_dma-mbox-create} \ 13 fingerd \ 14 ftpd \ 15 getty \ 16 ${_hyperv} \ 17 ${_mail.local} \ 18 ${_mknetid} \ 19 ${_pppoed} \ 20 rbootd \ 21 revnetgroup \ 22 ${_rlogind} \ 23 rpc.rquotad \ 24 rpc.rstatd \ 25 rpc.rusersd \ 26 rpc.rwalld \ 27 rpc.sprayd \ 28 ${_rshd} \ 29 ${_rtld-elf} \ 30 save-entropy \ 31 ${_smrsh} \ 32 talkd \ 33 tcpd \ 34 ${_telnetd} \ 35 ${_tests} \ 36 tftpd \ 37 ${_tftp-proxy} \ 38 ulog-helper \ 39 ${_ypxfr} 40 41.if ${MK_AT} != "no" 42_atrun= atrun 43.endif 44 45.if ${MK_CASPER} != "no" 46_casper= casper 47.endif 48 49.if ${MK_MAIL} != "no" 50_comsat= comsat 51.endif 52 53.if ${MK_DMAGENT} != "no" 54_dma= dma 55_dma-mbox-create= dma-mbox-create 56.endif 57 58.if ${MK_HYPERV} != "no" 59_hyperv= hyperv 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_RCMDS} != "no" 80_rlogind= rlogind 81_rshd= rshd 82.endif 83 84.if ${MK_SENDMAIL} != "no" 85_mail.local= mail.local 86_smrsh= smrsh 87.endif 88 89.if ${MK_TELNET} != "no" 90_telnetd= telnetd 91.endif 92 93.if ${MK_TESTS} != "no" 94_atf= atf 95_tests= tests 96.endif 97 98.include <bsd.subdir.mk> 99