mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
If one wishes to anchor the compiler toolchain tree somewhere other than /, all one needs to do is set "TOOLS_PREFIX" to a different rooting. Submitted by: marcel (in a different format and reworked by me)
20 lines
283 B
Makefile
20 lines
283 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ../cc_tools ${GCCDIR}
|
|
|
|
SRCS= multilib.h choose-temp.c obstack.c prefix.c pexecute.c version.c
|
|
|
|
CFLAGS+= -DIN_GCC
|
|
|
|
LIB= cc_drv
|
|
NOPROFILE= YES
|
|
NOPIC= YES
|
|
|
|
install:
|
|
@true
|
|
|
|
${OUT_OBJ}.o ${OUT_OBJ}.so: ${OUT_FILE}
|
|
|
|
.include <bsd.lib.mk>
|