]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - gnu/usr.bin/Makefile
MFC r264741: Add placeholder Kyuafiles for various top-level hierarchies.
[FreeBSD/stable/10.git] / gnu / usr.bin / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 SUBDIR= ${_binutils} \
6         ${_cc} \
7         dialog \
8         diff \
9         diff3 \
10         ${_dtc} \
11         ${_gdb} \
12         ${_gperf} \
13         grep \
14         ${_groff} \
15         ${_rcs} \
16         sdiff \
17         send-pr \
18         ${_tests} \
19         ${_texinfo}
20
21 .if ${MK_CXX} != "no"
22 _gperf=         gperf
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_INFO} != "no"
33 _texinfo=       texinfo
34 .endif
35
36 .if ${MK_RCS} != "no"
37 _rcs=           rcs
38 .endif
39
40 .if ${MK_TESTS} != "no"
41 _tests=         tests
42 .endif
43
44 .if ${MK_BINUTILS} != "no"
45 _binutils=      binutils
46 .endif
47 .if ${MK_GCC} != "no"
48 _cc=            cc
49 .endif
50 .if ${MK_GDB} != "no"
51 _gdb=           gdb
52 .endif
53
54 SUBDIR_PARALLEL=
55
56 .include <bsd.subdir.mk>