zephyr/samples/net/sockets/dumb_http_server/Makefile.posix
Paul Sokolovsky ed3ede06e1 samples: net: sockets: Reinstate POSIX Makefiles.
All current socket samples as one of the points show portability to
POSIX platforms, and provide POSIX makefiles to let user build such
a version of application easily. These Makefiles were lost during
CMake conversion.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
2017-11-13 16:41:14 -05:00

8 lines
220 B
Makefile

# This makefile builds socket_echo sample for POSIX system, like Linux
#
# Before using this Makefile, run Zephyr build process once to generate
# include files.
socket_dumb_http: src/socket_dumb_http.c
$(CC) $^ -o $@