Makefile revision 272149
1335640Shselasky#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2356341Scy# $FreeBSD: stable/10/libexec/Makefile 272149 2014-09-26 01:08:31Z gjb $
3335640Shselasky
4335640Shselasky.include <bsd.own.mk>
5335640Shselasky
6335640ShselaskySUBDIR=	${_atf} \
7335640Shselasky	${_atrun} \
8335640Shselasky	bootpd \
9335640Shselasky	${_comsat} \
10335640Shselasky	fingerd \
11335640Shselasky	ftpd \
12335640Shselasky	getty \
13335640Shselasky	${_mail.local} \
14335640Shselasky	${_mknetid} \
15335640Shselasky	${_pppoed} \
16335640Shselasky	rbootd \
17335640Shselasky	revnetgroup \
18335640Shselasky	${_rlogind} \
19335640Shselasky	rpc.rquotad \
20335640Shselasky	rpc.rstatd \
21335640Shselasky	rpc.rusersd \
22335640Shselasky	rpc.rwalld \
23335640Shselasky	rpc.sprayd \
24335640Shselasky	${_rshd} \
25335640Shselasky	${_rtld-elf} \
26335640Shselasky	save-entropy \
27335640Shselasky	${_smrsh} \
28335640Shselasky	talkd \
29335640Shselasky	tcpd \
30335640Shselasky	${_telnetd} \
31335640Shselasky	${_tests} \
32335640Shselasky	tftpd \
33335640Shselasky	${_tftp-proxy} \
34356341Scy	ulog-helper \
35356341Scy	${_ypxfr}
36356341Scy
37356341Scy.if ${MK_AT} != "no"
38335640Shselasky_atrun=		atrun
39335640Shselasky.endif
40335640Shselasky
41335640Shselasky.if ${MK_MAIL} != "no"
42335640Shselasky_comsat=	comsat
43335640Shselasky.endif
44335640Shselasky
45335640Shselasky.if ${MK_NIS} != "no"
46335640Shselasky_mknetid=	mknetid
47335640Shselasky_ypxfr=		ypxfr
48335640Shselasky.endif
49356341Scy
50335640Shselasky.if ${MK_NETGRAPH} != "no"
51335640Shselasky_pppoed=	pppoed
52335640Shselasky.endif
53335640Shselasky
54335640Shselasky.if ${MK_PF} != "no"
55335640Shselasky_tftp-proxy=	tftp-proxy
56335640Shselasky.endif
57335640Shselasky
58335640Shselasky.if !defined(NO_PIC) && !defined(NO_RTLD)
59335640Shselasky_rtld-elf=	rtld-elf
60335640Shselasky.endif
61335640Shselasky
62335640Shselasky.if ${MK_RCMDS} != "no"
63335640Shselasky_rlogind=	rlogind
64335640Shselasky_rshd=		rshd
65335640Shselasky.endif
66335640Shselasky
67335640Shselasky.if ${MK_SENDMAIL} != "no"
68335640Shselasky_mail.local=	mail.local
69335640Shselasky_smrsh=		smrsh
70335640Shselasky.endif
71335640Shselasky
72335640Shselasky.if ${MK_TELNET} != "no"
73335640Shselasky_telnetd=	telnetd
74335640Shselasky.endif
75335640Shselasky
76335640Shselasky.if ${MK_TESTS} != "no"
77335640Shselasky_atf=		atf
78335640Shselasky_tests=		tests
79335640Shselasky.endif
80335640Shselasky
81335640Shselasky.include <bsd.subdir.mk>
82335640Shselasky