freebsd-dev/gnu/usr.bin/Makefile

55 lines
639 B
Makefile
Raw Normal View History

1999-08-27 23:37:10 +00:00
# $FreeBSD$
1994-01-30 00:31:51 +00:00
.include <src.opts.mk>
SUBDIR= ${_binutils} \
2004-07-07 17:24:30 +00:00
${_cc} \
dialog \
diff \
diff3 \
${_dtc} \
2004-07-07 17:24:30 +00:00
${_gdb} \
${_gperf} \
2011-06-08 21:29:33 +00:00
grep \
2004-07-07 17:24:30 +00:00
${_groff} \
${_rcs} \
${_tests}
SUBDIR_DEPEND_gdb= ${_binutils}
.if ${MK_CXX} != "no"
.if ${MK_GCC} != "no"
2004-07-07 17:24:30 +00:00
_gperf= gperf
.endif
.if ${MK_GROFF} != "no"
2004-07-07 17:24:30 +00:00
_groff= groff
.endif
2005-08-03 09:22:42 +00:00
.endif
.if ${MK_GPL_DTC} != "no"
_dtc= dtc
.endif
.if ${MK_RCS} != "no"
_rcs= rcs
.endif
.if ${MK_TESTS} != "no"
_tests= tests
.endif
.if ${MK_BINUTILS} != "no"
2004-07-07 17:24:30 +00:00
_binutils= binutils
.if ${MK_GDB} != "no"
_gdb= gdb
.endif
.endif
.if ${MK_GCC} != "no"
2004-07-07 17:24:30 +00:00
_cc= cc
.endif
SUBDIR_PARALLEL=
1994-01-30 00:31:51 +00:00
.include <bsd.subdir.mk>