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