xref: /freebsd/libexec/Makefile (revision 5bf5ca772c6de2d53344a78cf461447cc322ccea)
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	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"
42SUBDIR+=	bootpd
43.endif
44
45.if ${MK_FINGER} != "no"
46SUBDIR+=	fingerd
47.endif
48
49.if ${MK_FTP} != "no"
50SUBDIR+=	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"
79SUBDIR+=	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"
92SUBDIR+=	talkd
93.endif
94
95.if ${MK_TCP_WRAPPERS} != "no"
96SUBDIR+=	tcpd
97.endif
98
99.if ${MK_TELNET} != "no"
100_telnetd=	telnetd
101.endif
102
103.if ${MK_TFTP} != "no"
104SUBDIR+=	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>
115