zephyr/samples/net/zperf/Makefile
Luiz Augusto von Dentz 0918a903b1 net: zperf: Add bluetooth support
Change-Id: I56f2000cef929d5d0ddae0d67bc222d20db06480
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
2017-01-20 16:23:20 +02:00

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