]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - gnu/usr.bin/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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         ${_tests} \
18         ${_texinfo}
19
20 .if ${MK_CXX} != "no"
21 _gperf=         gperf
22 .if ${MK_GROFF} != "no"
23 _groff=         groff
24 .endif
25 .endif
26
27 .if ${MK_GPL_DTC} != "no"
28 _dtc=           dtc
29 .endif
30
31 .if ${MK_INFO} != "no"
32 _texinfo=       texinfo
33 .endif
34
35 .if ${MK_RCS} != "no"
36 _rcs=           rcs
37 .endif
38
39 .if ${MK_TESTS} != "no"
40 _tests=         tests
41 .endif
42
43 .if ${MK_BINUTILS} != "no"
44 _binutils=      binutils
45 .endif
46 .if ${MK_GCC} != "no"
47 _cc=            cc
48 .endif
49 .if ${MK_GDB} != "no"
50 _gdb=           gdb
51 .endif
52
53 SUBDIR_PARALLEL=
54
55 .include <bsd.subdir.mk>