diff options
Diffstat (limited to 'usr.bin/bmake/Makefile.inc')
-rw-r--r-- | usr.bin/bmake/Makefile.inc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc new file mode 100644 index 000000000000..5140bd18bb37 --- /dev/null +++ b/usr.bin/bmake/Makefile.inc @@ -0,0 +1,37 @@ +# we do not need this +MK_host_egacy= no + +.sinclude <src.opts.mk> + +.if defined(.PARSEDIR) +# make sure this is available to unit-tests/Makefile +.export SRCTOP +.endif + +.if exists(${.CURDIR}/tests) +PROG= make +.if ${PROGNAME:U} != "bmake" +LINKS= ${BINDIR}/make ${BINDIR}/bmake +MLINKS= ${MAN} b${MAN} +.endif +.endif + +# hack to not add tests to tests subdir since this is included from +# there and to avoid renaming things that require changes to generated +# files. +.if defined(MK_TESTS) && ${MK_TESTS} != no && exists(${.CURDIR}/tests) +SUBDIR+= tests +.endif + +WARNS?=3 +CFLAGS+= -DNO_PWD_OVERRIDE + +.if make(after-import) +# use our preferred value +DEFAULT_SYS_PATH= .../share/mk:/usr/share/mk +.export DEFAULT_SYS_PATH +.endif + +.if ${MACHINE} != "host" +FILEMON_H ?= ${SRCTOP}/sys/dev/filemon/filemon.h +.endif |