mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 05:41:57 +00:00
Change-Id: I56f2000cef929d5d0ddae0d67bc222d20db06480 Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
16 lines
299 B
Makefile
16 lines
299 B
Makefile
BOARD ?= qemu_x86
|
|
|
|
ifeq (${PROFILER}, 1)
|
|
PROF="_prof"
|
|
endif
|
|
|
|
CONF_FILE ?= prj_${BOARD}${PROF}.conf
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|
|
|
|
ifeq ($(CONFIG_NET_L2_BLUETOOTH), y)
|
|
QEMU_EXTRA_FLAGS = -serial unix:/tmp/bt-server-bredr
|
|
else
|
|
include $(ZEPHYR_BASE)/samples/net/common/Makefile.ipstack
|
|
endif
|