Makefile revision 256106
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/libexec/Makefile 256106 2013-10-07 10:26:38Z des $
3
4.include <bsd.own.mk>
5
6SUBDIR=	${_atf} \
7	${_atrun} \
8	bootpd \
9	${_comsat} \
10	fingerd \
11	freebsd-version \
12	ftpd \
13	getty \
14	${_mail.local} \
15	${_mknetid} \
16	${_pppoed} \
17	rbootd \
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	talkd \
30	tcpd \
31	${_telnetd} \
32	tftpd \
33	${_tftp-proxy} \
34	ulog-helper \
35	${_ypxfr}
36
37.if ${MK_ATF} != "no"
38_atf=		atf
39.endif
40
41.if ${MK_AT} != "no"
42_atrun=		atrun
43.endif
44
45.if ${MK_MAIL} != "no"
46_comsat=	comsat
47.endif
48
49.if ${MK_NIS} != "no"
50_mknetid=	mknetid
51_ypxfr=		ypxfr
52.endif
53
54.if ${MK_NETGRAPH} != "no"
55_pppoed=	pppoed
56.endif
57
58.if ${MK_PF} != "no"
59_tftp-proxy=	tftp-proxy
60.endif
61
62.if !defined(NO_PIC) && !defined(NO_RTLD)
63_rtld-elf=	rtld-elf
64.endif
65
66.if ${MK_RCMDS} != "no"
67_rlogind=	rlogind
68_rshd=		rshd
69.endif
70
71.if ${MK_SENDMAIL} != "no"
72_mail.local=	mail.local
73_smrsh=		smrsh
74.endif
75
76.if ${MK_TELNET} != "no"
77_telnetd=	telnetd
78.endif
79
80.include <bsd.subdir.mk>
81