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