]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - gnu/usr.bin/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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         send-pr \
20         sort \
21         ${_texinfo}
22
23 .if ${MK_CXX} != "no"
24 _gperf=         gperf
25 .if ${MK_GROFF} != "no"
26 _groff=         groff
27 .endif
28 .endif
29
30 .if ${MK_CVS} != "no"
31 _cvs=           cvs
32 .endif
33
34 .if ${MK_FDT}   != "no"
35 _dtc=           dtc
36 .endif
37
38 .if ${MK_INFO} != "no"
39 _texinfo=       texinfo
40 .endif
41
42 .if ${MK_RCS} != "no"
43 _rcs=           rcs
44 .endif
45
46 .if ${MK_BINUTILS} != "no"
47 _binutils=      binutils
48 .endif
49 .if ${MK_GCC} != "no"
50 _cc=            cc
51 .endif
52 .if ${MK_GDB} != "no"
53 _gdb=           gdb
54 .endif
55
56 .include <bsd.subdir.mk>