2015-12-14 04:00:31 +08:00
|
|
|
BOARD ?= qemu_x86
|
2016-08-16 05:27:24 +08:00
|
|
|
CONF_FILE = prj_$(BOARD).conf
|
|
|
|
|
|
|
|
# This testcase requires a special linker script, from the testcase itself.
|
|
|
|
# The only boards that have one are the ones listed below.
|
|
|
|
valid_board_qemu_x86 = y
|
|
|
|
valid_board_qemu_cortex_m3 = y
|
|
|
|
|
|
|
|
ifneq ($(valid_board_$(BOARD)),y)
|
|
|
|
$(error not a supported board for this testcase)
|
|
|
|
endif
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-06 10:46:00 +08:00
|
|
|
include $(ZEPHYR_BASE)/Makefile.inc
|