Test didn't work unless the specific board was noted in the Makefile. This scales horribly. Assume no floating point / sse unless specifically mentioned. Change-Id: Id1eaa88cdf971a8843e2418661e6a8dba6a1b91d Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
15 lines
305 B
Makefile
15 lines
305 B
Makefile
BOARD ?= qemu_x86
|
|
MDEF_FILE = prj.mdef
|
|
KERNEL_TYPE = micro
|
|
|
|
# Boards where we want to exercise this test case with floating point
|
|
# and SSE instructions
|
|
CONF_minnowboard = prj_fp.conf
|
|
|
|
CONF_FILE = ${CONF_${BOARD}}
|
|
ifeq ($(CONF_FILE),)
|
|
CONF_FILE = prj_no_fp.conf
|
|
endif
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|