0629d5e958
in SUBDIRS having tests added to it, which fails. Work around this by checking to make sure tests exists before adding it to subdirs and work to get the generated file fixed so we can rename Makefile.inc to something else so it isn't automatically included by subdirs...
25 lines
523 B
Makefile
25 lines
523 B
Makefile
# $FreeBSD$
|
|
|
|
.sinclude <src.opts.mk>
|
|
|
|
.if defined(.PARSEDIR)
|
|
# make sure this is available to unit-tests/Makefile
|
|
.export SRCTOP
|
|
.endif
|
|
|
|
PROG= make
|
|
|
|
.if !defined(MK_SHARED_TOOLCHAIN) || ${MK_SHARED_TOOLCHAIN} == "no"
|
|
NO_SHARED?= YES
|
|
.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
|