freebsd-dev/gnu/usr.bin/Makefile

65 lines
743 B
Makefile
Raw Normal View History

1999-08-27 23:37:10 +00:00
# $FreeBSD$
1994-01-30 00:31:51 +00:00
.include <bsd.own.mk>
2004-07-07 17:24:30 +00:00
SUBDIR= bc \
${_binutils} \
${_cc} \
${_cpio} \
2004-07-07 17:24:30 +00:00
${_cvs} \
dc \
dialog \
diff \
diff3 \
${_gdb} \
${_gperf} \
${_grep} \
2004-07-07 17:24:30 +00:00
${_groff} \
${_man} \
2004-07-07 17:24:30 +00:00
patch \
${_rcs} \
2004-07-07 17:24:30 +00:00
sdiff \
send-pr \
sort \
${_texinfo}
2004-07-07 17:24:30 +00:00
.if ${MK_CXX} != "no"
2004-07-07 17:24:30 +00:00
_gperf= gperf
.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_GNU_CPIO} == "yes"
_cpio= cpio
.endif
2008-03-19 15:21:44 +00:00
.if ${MK_CVS} != "no"
_cvs= cvs
.endif
2004-07-07 17:24:30 +00:00
.if ${MK_GNU_GREP} != "no"
_grep= grep
.endif
.if ${MK_MAN} != "no"
_man= man
.endif
.if ${MK_INFO} != "no"
_texinfo= texinfo
.endif
.if ${MK_TOOLCHAIN} != "no"
2004-07-07 17:24:30 +00:00
_binutils= binutils
_cc= cc
.if ${MK_GDB} != "no"
2004-07-07 17:24:30 +00:00
_gdb= gdb
.endif
.endif
.if ${MK_RCS} != "no"
_rcs= rcs
.endif
1994-01-30 00:31:51 +00:00
.include <bsd.subdir.mk>