]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - gnu/usr.bin/Makefile
Upgrade to OpenSSH 6.7p1, retaining libwrap support (which has been removed
[FreeBSD/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         sdiff \
17         ${_tests}
18
19 SUBDIR_DEPEND_gdb= ${_binutils}
20
21 .if ${MK_CXX} != "no"
22 .if ${MK_GCC} != "no"
23 _gperf=         gperf
24 .endif
25 .if ${MK_GROFF} != "no"
26 _groff=         groff
27 .endif
28 .endif
29
30 .if ${MK_GPL_DTC} != "no"
31 _dtc=           dtc
32 .endif
33
34 .if ${MK_RCS} != "no"
35 _rcs=           rcs
36 .endif
37
38 .if ${MK_TESTS} != "no"
39 _tests=         tests
40 .endif
41
42 .if ${MK_BINUTILS} != "no"
43 _binutils=      binutils
44 .if ${MK_GDB} != "no"
45 _gdb=           gdb
46 .endif
47 .endif
48
49 .if ${MK_GCC} != "no"
50 _cc=            cc
51 .endif
52
53 SUBDIR_PARALLEL=
54
55 .include <bsd.subdir.mk>