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