2016-06-18 06:21:33 +08:00
|
|
|
# Makefile - coap server test application
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-06-18 06:21:33 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
BOARD = qemu_x86
|
|
|
|
CONF_FILE = prj.conf
|
|
|
|
|
|
|
|
include $(ZEPHYR_BASE)/Makefile.inc
|
2017-01-19 20:34:49 +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
|