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