mirror of
https://github.com/opnsense/src.git
synced 2026-02-10 14:25:50 -05:00
NO_TOOLCHAIN skips Compilers and Binutils NO_USB skips USB stuff NO_VINUM skips Vinum stuff NO_ACPI skips ACPI stuff
22 lines
362 B
Makefile
22 lines
362 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= bc ${_binutils} ${_cc} cpio dc dialog diff diff3 \
|
|
${_gperf} grep gzip man patch rcs sdiff send-pr sort tar texinfo
|
|
|
|
.if !defined(NO_TOOLCHAIN)
|
|
_cc=cc
|
|
_binutils=binutils
|
|
.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>
|