summaryrefslogtreecommitdiffstats
path: root/tools/build/Makefile.boot
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/Makefile.boot')
-rw-r--r--tools/build/Makefile.boot18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/build/Makefile.boot b/tools/build/Makefile.boot
new file mode 100644
index 0000000..e489981
--- /dev/null
+++ b/tools/build/Makefile.boot
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+# FreeBSD didn't always have the __FBSDID() macro in <sys/cdefs.h>.
+.if defined(BOOTSTRAPPING) && \
+ ( ${BOOTSTRAPPING} < 440001 || \
+ ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500024 ))
+CFLAGS+= -D__FBSDID=__RCSID
+.endif
+
+CFLAGS+= -I${WORLDTMP}/usr/include
+DPADD= ${WORLDTMP}/usr/lib/libbuild.a
+LDADD= -lbuild
+LDFLAGS= -L${WORLDTMP}/usr/lib
+
+OLD_MAKE_CONF?= /etc/make.conf
+.if exists(${OLD_MAKE_CONF})
+.include "${OLD_MAKE_CONF}"
+.endif
OpenPOWER on IntegriCloud