xref: /freebsd/libexec/Makefile (revision 15c433351f54e7cd5bec8d36c8e89e6a7fa55b26)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6SUBDIR=	${_atf} \
7	${_atrun} \
8	${_comsat} \
9	${_dma} \
10	getty \
11	${_mail.local} \
12	${_makewhatis.local} \
13	${_mknetid} \
14	${_pppoed} \
15	revnetgroup \
16	${_rlogind} \
17	rpc.rquotad \
18	rpc.rstatd \
19	rpc.rusersd \
20	rpc.rwalld \
21	rpc.sprayd \
22	${_rshd} \
23	${_rtld-elf} \
24	save-entropy \
25	${_smrsh} \
26	${_telnetd} \
27	${_tests} \
28	${_tftp-proxy} \
29	ulog-helper \
30	${_ypxfr}
31
32.if ${MK_AT} != "no"
33_atrun=		atrun
34.endif
35
36.if ${MK_BOOTPD} != "no"
37SUBDIR+=	bootpd
38.endif
39
40.if ${MK_FINGER} != "no"
41SUBDIR+=	fingerd
42.endif
43
44.if ${MK_FTP} != "no"
45SUBDIR+=	ftpd
46.endif
47
48.if ${MK_MAIL} != "no"
49_comsat=	comsat
50.endif
51
52.if ${MK_DMAGENT} != "no"
53_dma=		dma
54.endif
55
56.if ${MK_NIS} != "no"
57_mknetid=	mknetid
58_ypxfr=		ypxfr
59.endif
60
61.if ${MK_NETGRAPH} != "no"
62_pppoed=	pppoed
63.endif
64
65.if ${MK_PF} != "no"
66_tftp-proxy=	tftp-proxy
67.endif
68
69.if !defined(NO_PIC) && !defined(NO_RTLD)
70_rtld-elf=	rtld-elf
71.endif
72
73.if ${MK_RBOOTD} != "no"
74SUBDIR+=	rbootd
75.endif
76
77.if ${MK_RCMDS} != "no"
78_rlogind=	rlogind
79_rshd=		rshd
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