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