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