This patch adds a basic HTTP client sample application. The following HTTP 1.1 methods are supported: GET, HEAD, OPTIONS and POST. This sample application does not define an API for HTTP, for more information see ZEP-346. Jira: ZEP-827 Change-Id: Iee63a53f2ef424964f040eba20326d648249fc24 Signed-off-by: Flavio Santes <flavio.santes@intel.com>
12 lines
198 B
Makefile
12 lines
198 B
Makefile
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
obj-y += main.o
|
|
obj-y += tcp_client.o
|
|
obj-y += http_client.o
|
|
obj-y += http_client_rcv.o
|
|
obj-y += http_client_cb.o
|