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