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 ${_hyperv} \ 13 launchproxy \ 14 ${_mknetid} \ 15 ${_pppoed} \ 16 revnetgroup \ 17 ${_rlogind} \ 18 rpc.rquotad \ 19 rpc.rstatd \ 20 rpc.rusersd \ 21 rpc.rwalld \ 22 rpc.sprayd \ 23 ${_rshd} \ 24 ${_rtld-elf} \ 25 save-entropy \ 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_TALK} != "no" 87SUBDIR+= talkd 88.endif 89 90.if ${MK_TCP_WRAPPERS} != "no" 91SUBDIR+= tcpd 92.endif 93 94.if ${MK_TELNET} != "no" 95_telnetd= telnetd 96.endif 97 98.if ${MK_TFTP} != "no" 99SUBDIR+= tftpd 100.endif 101 102.if ${MK_TESTS} != "no" 103_atf= atf 104_tests= tests 105.endif 106 107.include <bsd.arch.inc.mk> 108 109.include <bsd.subdir.mk> 110