xref: /freebsd/libexec/Makefile (revision ccfb965433c67f3bda935a3cdf334be2e3c4348d)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6SUBDIR=	${_atf} \
7	${_atrun} \
8	${_casper} \
9	${_comsat} \
10	${_dma} \
11	${_dma-mbox-create} \
12	getty \
13	${_mail.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_BOOTPD} != "no"
38SUBDIR+=	bootpd
39.endif
40
41.if ${MK_CASPER} != "no"
42_casper=	casper
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_dma-mbox-create=	dma-mbox-create
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_TALK} != "no"
94SUBDIR+=	talkd
95.endif
96
97.if ${MK_TCP_WRAPPERS} != "no"
98SUBDIR+=	tcpd
99.endif
100
101.if ${MK_TELNET} != "no"
102_telnetd=	telnetd
103.endif
104
105.if ${MK_TFTP} != "no"
106SUBDIR+=	tftpd
107.endif
108
109.if ${MK_TESTS} != "no"
110_atf=		atf
111_tests=		tests
112.endif
113
114.include <bsd.arch.inc.mk>
115
116.include <bsd.subdir.mk>
117