mirror of
https://github.com/opnsense/src.git
synced 2026-03-08 17:20:43 -04:00
29 lines
492 B
Makefile
29 lines
492 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= bc ${_binutils} ${_cc} cpio dc dialog diff diff3 ${_gdb} \
|
|
${_gperf} grep gzip man patch rcs sdiff send-pr sort tar texinfo
|
|
|
|
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"
|
|
NO_GDB= not yet
|
|
.endif
|
|
|
|
.if !defined(NO_TOOLCHAIN)
|
|
_cc=cc
|
|
_binutils=binutils
|
|
.if !defined(NO_GDB)
|
|
_gdb=gdb
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(NO_CXX)
|
|
.if ${MACHINE_ARCH} != "powerpc"
|
|
_gperf=gperf
|
|
.endif
|
|
SUBDIR+=groff
|
|
.endif
|
|
|
|
.if !defined(NO_CVS)
|
|
SUBDIR+=cvs
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|