]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - gnu/usr.bin/Makefile
Merge ath_hal 0.10.5.10 to head.
[FreeBSD/FreeBSD.git] / gnu / usr.bin / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 SUBDIR= bc \
6         ${_binutils} \
7         ${_cc} \
8         ${_cpio} \
9         ${_cvs} \
10         dc \
11         dialog \
12         diff \
13         diff3 \
14         ${_gdb} \
15         ${_gperf} \
16         ${_grep} \
17         ${_groff} \
18         ${_man} \
19         patch \
20         ${_rcs} \
21         sdiff \
22         send-pr \
23         sort \
24         ${_texinfo}
25  
26 .if ${MK_CXX} != "no"
27 _gperf=         gperf
28 .if ${MK_GROFF} != "no"
29 _groff=         groff
30 .endif
31 .endif
32
33 .if ${MK_GNU_CPIO} == "yes"
34 _cpio=          cpio
35 .endif
36
37 .if ${MK_CVS} != "no"
38 _cvs=           cvs
39 .endif
40
41 .if ${MK_GNU_GREP} != "no"
42 _grep=          grep
43 .endif
44
45 .if ${MK_MAN} != "no"
46 _man=           man
47 .endif
48
49 .if ${MK_INFO} != "no"
50 _texinfo=       texinfo
51 .endif
52
53 .if ${MK_TOOLCHAIN} != "no"
54 _binutils=      binutils
55 _cc=            cc
56 .if ${MK_GDB} != "no"
57 _gdb=           gdb
58 .endif
59 .endif
60 .if ${MK_RCS} != "no"
61 _rcs=           rcs
62 .endif
63
64 .include <bsd.subdir.mk>