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