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