zephyr/samples/net/socket_echo/Makefile.posix
Paul Sokolovsky d950ec2981 samples: net: Add socket-based echo server example
The example source code is POSIX-compatible (modulo include files),
i.e. can be built and behaves the same way for Zephyr and a POSIX
system (e.g. Linux). Makefile.posix is available for the latter.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
2017-06-28 16:07:55 +03:00

5 lines
119 B
Makefile

# This makefile builds socket_echo sample for POSIX system, like Linux
socket_echo: src/socket_echo.c
$(CC) $^ -o $@