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