1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: stable/11/libexec/Makefile 355345 2019-12-03 18:25:16Z kevans $
3
4.include <src.opts.mk>
5
6SUBDIR=	${_atf} \
7	${_atrun} \
8	${_blacklistd-helper} \
9	${_comsat} \
10	${_dma} \
11	flua \
12	getty \
13	${_mail.local} \
14	${_makewhatis.local} \
15	${_mknetid} \
16	${_pppoed} \
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
77.endif
78
79.if ${MK_RBOOTD} != "no"
80SUBDIR+=	rbootd
81.endif
82
83.if ${MK_RCMDS} != "no"
84_rlogind=	rlogind
85_rshd=		rshd
86.endif
87
88.if ${MK_SENDMAIL} != "no"
89_mail.local=	mail.local
90_smrsh=		smrsh
91.endif
92
93.if ${MK_MAN_UTILS} != "no"
94_makewhatis.local=	makewhatis.local
95.endif
96
97.if ${MK_TALK} != "no"
98SUBDIR+=	talkd
99.endif
100
101.if ${MK_TCP_WRAPPERS} != "no"
102SUBDIR+=	tcpd
103.endif
104
105.if ${MK_TELNET} != "no"
106_telnetd=	telnetd
107.endif
108
109.if ${MK_TFTP} != "no"
110SUBDIR+=	tftpd
111.endif
112
113.if ${MK_TESTS} != "no"
114_atf=		atf
115_tests=		tests
116.endif
117
118.include <bsd.arch.inc.mk>
119
120.include <bsd.subdir.mk>
121