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