diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2008-09-21 22:02:26 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2008-09-21 22:02:26 +0000 |
| commit | 690f477d75324543e57e2b45354c6e0670b9a5f7 (patch) | |
| tree | 6d0176f734c952569004dea8a4d84a092ced5821 /libexec/Makefile | |
| parent | eba1dd2124fa2c06c7ad100d2ac2a3a8786f9c9d (diff) | |
Notes
Diffstat (limited to 'libexec/Makefile')
| -rw-r--r-- | libexec/Makefile | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index c6c2ab3456c1..04fc38b349f1 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -3,9 +3,9 @@ .include <bsd.own.mk> -SUBDIR= atrun \ +SUBDIR= ${_atrun} \ bootpd \ - comsat \ + ${_comsat} \ fingerd \ ftpd \ getty \ @@ -13,7 +13,7 @@ SUBDIR= atrun \ ${_mail.local} \ makekey \ ${_mknetid} \ - pppoed \ + ${_pppoed} \ rbootd \ revnetgroup \ ${_rlogind} \ @@ -28,16 +28,28 @@ SUBDIR= atrun \ ${_smrsh} \ talkd \ tcpd \ - telnetd \ + ${_telnetd} \ tftpd \ ${_tftp-proxy} \ ${_ypxfr} +.if ${MK_AT} != "no" +_atrun= atrun +.endif + +.if ${MK_MAIL} != "no" +_comsat= comsat +.endif + .if ${MK_NIS} != "no" _mknetid= mknetid _ypxfr= ypxfr .endif +.if ${MK_NETGRAPH} != "no" +_pppoed= pppoed +.endif + .if ${MK_PF} != "no" _tftp-proxy= tftp-proxy .endif @@ -53,7 +65,11 @@ _rshd= rshd .if ${MK_SENDMAIL} != "no" _mail.local= mail.local -_smrsh= smrsh +_smrsh= smrsh +.endif + +.if ${MK_TELNET} != "no" +_telnetd= telnetd .endif .include <bsd.subdir.mk> |
