2017-01-13 14:43:23 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2017 Intel Corporation
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
2017-05-08 19:27:29 +08:00
|
|
|
BOARD ?= qemu_x86
|
2017-07-31 21:22:31 +08:00
|
|
|
CONF_FILE ?= prj.conf
|
2017-01-13 14:43:23 +08:00
|
|
|
|
|
|
|
include $(ZEPHYR_BASE)/Makefile.inc
|
2017-07-28 19:29:21 +08:00
|
|
|
|
|
|
|
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
|