opnsense-src/gnu/usr.bin/Makefile

57 lines
646 B
Makefile
Raw Normal View History

1999-08-27 19:37:10 -04:00
# $FreeBSD$
1994-01-29 19:31:51 -05:00
.include <bsd.own.mk>
SUBDIR= ${_binutils} \
2004-07-07 13:24:30 -04:00
${_cc} \
${_cvs} \
dialog \
diff \
diff3 \
${_dtc} \
2004-07-07 13:24:30 -04:00
${_gdb} \
${_gperf} \
2011-06-08 17:29:33 -04:00
grep \
2004-07-07 13:24:30 -04:00
${_groff} \
patch \
${_rcs} \
2004-07-07 13:24:30 -04:00
sdiff \
send-pr \
sort \
${_texinfo}
.if ${MK_CXX} != "no"
2004-07-07 13:24:30 -04:00
_gperf= gperf
.if ${MK_GROFF} != "no"
2004-07-07 13:24:30 -04:00
_groff= groff
.endif
2005-08-03 05:22:42 -04:00
.endif
2008-03-19 11:21:44 -04:00
.if ${MK_CVS} != "no"
_cvs= cvs
.endif
2004-07-07 13:24:30 -04:00
.if ${MK_FDT} != "no"
_dtc= dtc
.endif
.if ${MK_INFO} != "no"
_texinfo= texinfo
.endif
.if ${MK_RCS} != "no"
_rcs= rcs
.endif
.if ${MK_BINUTILS} != "no"
2004-07-07 13:24:30 -04:00
_binutils= binutils
.endif
.if ${MK_GCC} != "no"
2004-07-07 13:24:30 -04:00
_cc= cc
.endif
.if ${MK_GDB} != "no"
2004-07-07 13:24:30 -04:00
_gdb= gdb
.endif
1994-01-29 19:31:51 -05:00
.include <bsd.subdir.mk>