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