xref: /freebsd/libexec/Makefile (revision 48c779cdecb5f803e5fe5d761987e976ca9609db)
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	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"
43SUBDIR+=	bootpd
44.endif
45
46.if ${MK_FINGER} != "no"
47SUBDIR+=	fingerd
48.endif
49
50.if ${MK_FTP} != "no"
51SUBDIR+=	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
77SUBDIR.${MK_LIB32}+=	rtld-elf32
78.endif
79
80.if ${MK_RBOOTD} != "no"
81SUBDIR+=	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"
94SUBDIR+=	talkd
95.endif
96
97.if ${MK_TCP_WRAPPERS} != "no"
98SUBDIR+=	tcpd
99.endif
100
101.if ${MK_TELNET} != "no"
102_telnetd=	telnetd
103.endif
104
105.if ${MK_TFTP} != "no"
106SUBDIR+=	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>
117