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 ${_mail.local} \ 17 ${_mknetid} \ 18 ${_pppoed} \ 19 rbootd \ 20 revnetgroup \ 21 ${_rlogind} \ 22 rpc.rquotad \ 23 rpc.rstatd \ 24 rpc.rusersd \ 25 rpc.rwalld \ 26 rpc.sprayd \ 27 ${_rshd} \ 28 ${_rtld-elf} \ 29 save-entropy \ 30 ${_smrsh} \ 31 tcpd \ 32 ${_telnetd} \ 33 ${_tests} \ 34 tftpd \ 35 ${_tftp-proxy} \ 36 ulog-helper \ 37 ${_ypxfr} 38 39.if ${MK_AT} != "no" 40_atrun= atrun 41.endif 42 43.if ${MK_CASPER} != "no" 44_casper= casper 45.endif 46 47.if ${MK_MAIL} != "no" 48_comsat= comsat 49.endif 50 51.if ${MK_DMAGENT} != "no" 52_dma= dma 53_dma-mbox-create= dma-mbox-create 54.endif 55 56.if ${MK_NIS} != "no" 57_mknetid= mknetid 58_ypxfr= ypxfr 59.endif 60 61.if ${MK_NETGRAPH} != "no" 62_pppoed= pppoed 63.endif 64 65.if ${MK_PF} != "no" 66_tftp-proxy= tftp-proxy 67.endif 68 69.if !defined(NO_PIC) && !defined(NO_RTLD) 70_rtld-elf= rtld-elf 71.endif 72 73.if ${MK_RCMDS} != "no" 74_rlogind= rlogind 75_rshd= rshd 76.endif 77 78.if ${MK_SENDMAIL} != "no" 79_mail.local= mail.local 80_smrsh= smrsh 81.endif 82 83.if ${MK_TALK} != "no" 84SUBDIR+= talkd 85.endif 86 87.if ${MK_TELNET} != "no" 88_telnetd= telnetd 89.endif 90 91.if ${MK_TESTS} != "no" 92_atf= atf 93_tests= tests 94.endif 95 96.include <bsd.arch.inc.mk> 97 98.include <bsd.subdir.mk> 99