Instead of separate sample application that does everything related to HTTP client connectivity, create a HTTP client library that hides nasty details that are related to sending HTTP methods. After this the sample HTTP client application is very simple and only shows how to use the client HTTP API. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
12 lines
229 B
Makefile
12 lines
229 B
Makefile
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
BOARD ?= qemu_x86
|
|
CONF_FILE ?= prj_$(BOARD).conf
|
|
|
|
include $(ZEPHYR_BASE)/Makefile.inc
|
|
include $(ZEPHYR_BASE)/samples/net/common/Makefile.ipstack
|