xref: /freebsd/libexec/Makefile (revision d6b92ffa)
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_RCMDS} != "no"
83_rlogind=	rlogind
84_rshd=		rshd
85.endif
86
87.if ${MK_SENDMAIL} != "no"
88_mail.local=	mail.local
89_smrsh=		smrsh
90.endif
91
92.if ${MK_MAN_UTILS} != "no"
93_makewhatis.local=	makewhatis.local
94.endif
95
96.if ${MK_TALK} != "no"
97SUBDIR+=	talkd
98.endif
99
100.if ${MK_TCP_WRAPPERS} != "no"
101SUBDIR+=	tcpd
102.endif
103
104.if ${MK_TELNET} != "no"
105_telnetd=	telnetd
106.endif
107
108.if ${MK_TFTP} != "no"
109SUBDIR+=	tftpd
110.endif
111
112.if ${MK_TESTS} != "no"
113_atf=		atf
114_tests=		tests
115.endif
116
117.include <bsd.arch.inc.mk>
118
119.include <bsd.subdir.mk>
120