mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 05:52:47 +00:00
In case the user wants to use BOARD make variable to conveniently use another board with this sample. Change-Id: I6dd0656da223218d116dd498c1336c890563b212 Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@intel.com>
19 lines
367 B
Makefile
19 lines
367 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
|