17 lines
326 B
Makefile
17 lines
326 B
Makefile
# default configuration
|
|
TEST ?= min
|
|
BSP ?= generic_pc
|
|
|
|
MDEF_FILE = micro_${TEST}.mdef
|
|
KERNEL_TYPE = micro
|
|
CONF_FILE = prj_$(TEST)_$(ARCH).conf
|
|
CFLAGS += -DTEST_${TEST}
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|
|
|
|
ifeq ($(ARCH),ARM)
|
|
ifneq ($(TEST),min)
|
|
$(error 'reg' and 'max' test do not currently build for ARM)
|
|
endif
|
|
endif
|