]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - libexec/Makefile
MFC r277676:
[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         bootpd \
9         ${_comsat} \
10         fingerd \
11         ftpd \
12         getty \
13         ${_hyperv} \
14         ${_mail.local} \
15         ${_mknetid} \
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         tcpd \
30         ${_telnetd} \
31         ${_tests} \
32         tftpd \
33         ${_tftp-proxy} \
34         ulog-helper \
35         ${_ypxfr}
36
37 .if ${MK_AT} != "no"
38 _atrun=         atrun
39 .endif
40
41 .if ${MK_MAIL} != "no"
42 _comsat=        comsat
43 .endif
44
45 .if ${MK_HYPERV} != "no"
46 _hyperv=        hyperv
47 .endif
48
49 .if ${MK_NIS} != "no"
50 _mknetid=       mknetid
51 _ypxfr=         ypxfr
52 .endif
53
54 .if ${MK_NETGRAPH} != "no"
55 _pppoed=        pppoed
56 .endif
57
58 .if ${MK_PF} != "no"
59 _tftp-proxy=    tftp-proxy
60 .endif
61
62 .if !defined(NO_PIC) && !defined(NO_RTLD)
63 _rtld-elf=      rtld-elf
64 .endif
65
66 .if ${MK_RCMDS} != "no"
67 _rlogind=       rlogind
68 _rshd=          rshd
69 .endif
70
71 .if ${MK_SENDMAIL} != "no"
72 _mail.local=    mail.local
73 _smrsh=         smrsh
74 .endif
75
76 .if ${MK_TALK} != "no"
77 SUBDIR+=        talkd
78 .endif
79
80 .if ${MK_TELNET} != "no"
81 _telnetd=       telnetd
82 .endif
83
84 .if ${MK_TESTS} != "no"
85 _atf=           atf
86 _tests=         tests
87 .endif
88
89 .include <bsd.subdir.mk>