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