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>
5 lines
119 B
Makefile
5 lines
119 B
Makefile
# This makefile builds socket_echo sample for POSIX system, like Linux
|
|
|
|
socket_echo: src/socket_echo.c
|
|
$(CC) $^ -o $@
|