Remove unused global variables as well as unused memory
[freebsd.git] / gnu / usr.bin / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.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         ${_tests}
17
18 SUBDIR_DEPEND_gdb= ${_binutils}
19
20 .if ${MK_CXX} != "no"
21 .if ${MK_GCC} != "no"
22 _gperf=         gperf
23 .endif
24 .if ${MK_GROFF} != "no"
25 _groff=         groff
26 .endif
27 .endif
28
29 .if ${MK_GPL_DTC} != "no"
30 _dtc=           dtc
31 .endif
32
33 .if ${MK_RCS} != "no"
34 _rcs=           rcs
35 .endif
36
37 .if ${MK_TESTS} != "no"
38 _tests=         tests
39 .endif
40
41 .if ${MK_BINUTILS} != "no"
42 _binutils=      binutils
43 .if ${MK_GDB} != "no"
44 _gdb=           gdb
45 .endif
46 .endif
47
48 .if ${MK_GCC} != "no"
49 _cc=            cc
50 .endif
51
52 SUBDIR_PARALLEL=
53
54 .include <bsd.subdir.mk>