Add the HTTP server sample application on top of the HTTP Parser Library. This sample application is based on TCP and HTTP chunk transfer code found at: https://gerrit.zephyrproject.org/r/#/c/9977/ A README file with sample output and a detailed description of this application is also provided. Jira: ZEP-820 Jira: ZEP-1542 Jira: ZEP-1556 Change-Id: I649104a256190577000bbac118136d5bc21f83bf Signed-off-by: Flavio Santes <flavio.santes@intel.com>
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
|