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