Makefile revision 279505
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: stable/10/libexec/Makefile 279505 2015-03-01 22:03:52Z ngie $
3
4.include <bsd.own.mk>
5
6SUBDIR=	${_atf} \
7	${_atrun} \
8	${_comsat} \
9	getty \
10	${_hyperv} \
11	${_mail.local} \
12	${_mknetid} \
13	${_pppoed} \
14	revnetgroup \
15	${_rlogind} \
16	rpc.rquotad \
17	rpc.rstatd \
18	rpc.rusersd \
19	rpc.rwalld \
20	rpc.sprayd \
21	${_rshd} \
22	${_rtld-elf} \
23	save-entropy \
24	${_smrsh} \
25	${_telnetd} \
26	${_tests} \
27	${_tftp-proxy} \
28	ulog-helper \
29	${_ypxfr}
30
31.if ${MK_AT} != "no"
32_atrun=		atrun
33.endif
34
35.if ${MK_BOOTPD} != "no"
36SUBDIR+=	bootpd
37.endif
38
39.if ${MK_FINGER} != "no"
40SUBDIR+=	fingerd
41.endif
42
43.if ${MK_FTP} != "no"
44SUBDIR+=	ftpd
45.endif
46
47.if ${MK_MAIL} != "no"
48_comsat=	comsat
49.endif
50
51.if ${MK_HYPERV} != "no"
52_hyperv=	hyperv
53.endif
54
55.if ${MK_NIS} != "no"
56_mknetid=	mknetid
57_ypxfr=		ypxfr
58.endif
59
60.if ${MK_NETGRAPH} != "no"
61_pppoed=	pppoed
62.endif
63
64.if ${MK_PF} != "no"
65_tftp-proxy=	tftp-proxy
66.endif
67
68.if !defined(NO_PIC) && !defined(NO_RTLD)
69_rtld-elf=	rtld-elf
70.endif
71
72.if ${MK_RBOOTD} != "no"
73SUBDIR+=	rbootd
74.endif
75
76.if ${MK_RCMDS} != "no"
77_rlogind=	rlogind
78_rshd=		rshd
79.endif
80
81.if ${MK_SENDMAIL} != "no"
82_mail.local=	mail.local
83_smrsh=		smrsh
84.endif
85
86.if ${MK_TALK} != "no"
87SUBDIR+=	talkd
88.endif
89
90.if ${MK_TCP_WRAPPERS} != "no"
91SUBDIR+=	tcpd
92.endif
93
94.if ${MK_TELNET} != "no"
95_telnetd=	telnetd
96.endif
97
98.if ${MK_TFTP} != "no"
99SUBDIR+=	tftpd
100.endif
101
102.if ${MK_TESTS} != "no"
103_atf=		atf
104_tests=		tests
105.endif
106
107.include <bsd.subdir.mk>
108