Change-Id: I9bef7f176deca6476e20d97d547b8d91ffc62c83 Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
19 lines
365 B
Makefile
19 lines
365 B
Makefile
# Makefile - coap server test application
|
|
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
BOARD = qemu_x86
|
|
CONF_FILE = prj.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
|