4432171c46
Similar to r266147, don't define PROG in the test subdirs.
33 lines
745 B
Makefile
33 lines
745 B
Makefile
# $FreeBSD$
|
|
|
|
.include "bsd.own.mk"
|
|
|
|
.if defined(.PARSEDIR)
|
|
# make sure this is available to unit-tests/Makefile
|
|
.export SRCTOP
|
|
.endif
|
|
|
|
# Sadly, we cannot assume bsd.own.mk did its job,
|
|
# nor can we safely include the one we want
|
|
.if !defined(WITHOUT_BMAKE)
|
|
MK_BMAKE= yes
|
|
.endif
|
|
|
|
.if defined(MK_BMAKE) && ${MK_BMAKE} != "no" && exists(${.CURDIR}/tests)
|
|
PROG= make
|
|
.endif
|
|
|
|
.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
|