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