Makefile revision 278710
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: stable/10/libexec/Makefile 278710 2015-02-13 21:19:54Z ngie $
3
4.include <bsd.own.mk>
5
6SUBDIR=	${_atf} \
7	${_atrun} \
8	bootpd \
9	${_comsat} \
10	fingerd \
11	ftpd \
12	getty \
13	${_hyperv} \
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	tcpd \
30	${_telnetd} \
31	${_tests} \
32	tftpd \
33	${_tftp-proxy} \
34	ulog-helper \
35	${_ypxfr}
36
37.if ${MK_AT} != "no"
38_atrun=		atrun
39.endif
40
41.if ${MK_MAIL} != "no"
42_comsat=	comsat
43.endif
44
45.if ${MK_HYPERV} != "no"
46_hyperv=	hyperv
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_TALK} != "no"
77SUBDIR+=	talkd
78.endif
79
80.if ${MK_TELNET} != "no"
81_telnetd=	telnetd
82.endif
83
84.if ${MK_TESTS} != "no"
85_atf=		atf
86_tests=		tests
87.endif
88
89.include <bsd.subdir.mk>
90