14 lines
264 B
Makefile
14 lines
264 B
Makefile
|
#
|
||
|
# Copyright (c) 2017 Intel Corporation
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
BOARD ?= frdm_k64f
|
||
|
CONF_FILE ?= prj_$(BOARD).conf
|
||
|
|
||
|
include $(ZEPHYR_BASE)/Makefile.inc
|
||
|
ifeq ($(BOARD), qemu_x86)
|
||
|
include $(ZEPHYR_BASE)/samples/net/common/Makefile.ipstack
|
||
|
endif
|