1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 3 4.include <bsd.own.mk> 5 6SUBDIR= ${_atf} \ 7 ${_atrun} \ 8 bootpd \ 9 ${_comsat} \ 10 fingerd \ 11 ftpd \ 12 getty \ 13 ${_mail.local} \ 14 ${_mknetid} \ 15 ${_pppoed} \ 16 rbootd \ 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 talkd \ 29 tcpd \ 30 ${_telnetd} \ 31 ${_tests} \ 32 tftpd \ 33 ${_tftp-proxy} \ 34 ulog-helper \ 35 ${_ypxfr} 36 37.if ${MK_AT} != "no" 38_atrun= atrun 39.endif 40 41.if ${MK_MAIL} != "no" 42_comsat= comsat 43.endif 44 45.if ${MK_NIS} != "no" 46_mknetid= mknetid 47_ypxfr= ypxfr 48.endif 49 50.if ${MK_NETGRAPH} != "no" 51_pppoed= pppoed 52.endif 53 54.if ${MK_PF} != "no" 55_tftp-proxy= tftp-proxy 56.endif 57 58.if !defined(NO_PIC) && !defined(NO_RTLD) 59_rtld-elf= rtld-elf 60.endif 61 62.if ${MK_RCMDS} != "no" 63_rlogind= rlogind 64_rshd= rshd 65.endif 66 67.if ${MK_SENDMAIL} != "no" 68_mail.local= mail.local 69_smrsh= smrsh 70.endif 71 72.if ${MK_TELNET} != "no" 73_telnetd= telnetd 74.endif 75 76.if ${MK_TESTS} != "no" 77_atf= atf 78_tests= tests 79.endif 80 81.include <bsd.subdir.mk> 82