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 ${_mail.local} \ 13 ${_mknetid} \ 14 ${_pppoed} \ 15 rbootd \ 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 ${_smrsh} \ 27 talkd \ 28 tcpd \ 29 ${_telnetd} \ 30 tftpd \ 31 ${_tftp-proxy} \ 32 ${_ypxfr} 33 34.if ${MK_AT} != "no" 35_atrun= atrun 36.endif 37 38.if ${MK_MAIL} != "no" 39_comsat= comsat 40.endif 41 42.if ${MK_NIS} != "no" 43_mknetid= mknetid 44_ypxfr= ypxfr 45.endif 46 47.if ${MK_NETGRAPH} != "no" 48_pppoed= pppoed 49.endif 50 51.if ${MK_PF} != "no" 52_tftp-proxy= tftp-proxy 53.endif 54 55.if !defined(NO_PIC) && !defined(NO_RTLD) 56_rtld-elf= rtld-elf 57.endif 58 59.if ${MK_RCMDS} != "no" 60_rlogind= rlogind 61_rshd= rshd 62.endif 63 64.if ${MK_SENDMAIL} != "no" 65_mail.local= mail.local 66_smrsh= smrsh 67.endif 68 69.if ${MK_TELNET} != "no" 70_telnetd= telnetd 71.endif 72 73.include <bsd.subdir.mk> 74