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 $@
|