xref: /freebsd/gnu/usr.bin/Makefile (revision fcb560670601b2a4d87bb31d7531c8dcc37ee71b)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR= ${_binutils} \
6	${_cc} \
7	dialog \
8	diff \
9	diff3 \
10	${_dtc} \
11	${_gdb} \
12	${_gperf} \
13	grep \
14	${_groff} \
15	${_rcs} \
16	sdiff \
17	${_tests}
18
19.if ${MK_CXX} != "no"
20.if ${MK_GCC} != "no"
21_gperf=		gperf
22.endif
23.if ${MK_GROFF} != "no"
24_groff=		groff
25.endif
26.endif
27
28.if ${MK_GPL_DTC} != "no"
29_dtc=		dtc
30.endif
31
32.if ${MK_RCS} != "no"
33_rcs=		rcs
34.endif
35
36.if ${MK_TESTS} != "no"
37_tests=		tests
38.endif
39
40.if ${MK_BINUTILS} != "no"
41_binutils=	binutils
42.endif
43.if ${MK_GCC} != "no"
44_cc=		cc
45.endif
46.if ${MK_GDB} != "no"
47_gdb=		gdb
48.endif
49
50SUBDIR_PARALLEL=
51
52.include <bsd.subdir.mk>
53