zephyr/samples/net/sockets/echo_async/Makefile.posix
Paul Sokolovsky 00e8309f03 samples: sockets: Add async echo server example
Implements asynchronous TCP echo server using non-blocking sockets
and poll, with concurrent connections support.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
2017-07-18 21:46:06 +03:00

4 lines
107 B
Text

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