2015-07-30 21:20:58 +08:00
|
|
|
# Makefile - echo client test application
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-07-30 21:20:58 +08:00
|
|
|
#
|
|
|
|
|
2015-12-14 04:00:31 +08:00
|
|
|
BOARD ?= qemu_x86
|
2016-11-29 23:11:10 +08:00
|
|
|
CONF_FILE ?= prj_$(BOARD).conf
|
2015-07-30 21:20:58 +08:00
|
|
|
|
|
|
|
include $(ZEPHYR_BASE)/Makefile.inc
|
2016-02-22 20:04:21 +08:00
|
|
|
|
2016-12-08 23:32:20 +08:00
|
|
|
ifeq ($(CONFIG_NET_L2_BLUETOOTH), y)
|
2016-02-22 20:04:21 +08:00
|
|
|
QEMU_EXTRA_FLAGS = -serial unix:/tmp/bt-server-bredr
|
2016-03-02 23:33:50 +08:00
|
|
|
else
|
2016-03-15 16:30:15 +08:00
|
|
|
include $(ZEPHYR_BASE)/samples/net/common/Makefile.ipstack
|
2016-02-22 20:04:21 +08:00
|
|
|
endif
|