]> CyberLeo.Net >> Repos - FreeBSD/releng/9.3.git/blob - gnu/usr.bin/Makefile
Merge r267738 from stable/9:
[FreeBSD/releng/9.3.git] / gnu / usr.bin / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 SUBDIR= ${_binutils} \
6         ${_cc} \
7         ${_cvs} \
8         dialog \
9         diff \
10         diff3 \
11         ${_dtc} \
12         ${_gdb} \
13         ${_gperf} \
14         grep \
15         ${_groff} \
16         patch \
17         ${_rcs} \
18         sdiff \
19         sort \
20         ${_texinfo}
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_CVS} != "no"
30 _cvs=           cvs
31 .endif
32
33 .if ${MK_FDT}   != "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_BINUTILS} != "no"
46 _binutils=      binutils
47 .endif
48 .if ${MK_GCC} != "no"
49 _cc=            cc
50 .endif
51 .if ${MK_GDB} != "no"
52 _gdb=           gdb
53 .endif
54
55 SUBDIR_PARALLEL=
56
57 .include <bsd.subdir.mk>