mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 21:25:56 +00:00
Deleted the instance of app_kernel in tests/legacy/benchmark. JIRA: ZEP-1980 Change-Id: I5a6e073d9b0c870be0cc7d8ae5bb352b11d7f97e Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
13 lines
265 B
Makefile
13 lines
265 B
Makefile
BOARD ?= qemu_x86
|
|
|
|
# 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.test
|