1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-11-16 23:11:25 +00:00
sys-con/network_clients/linux_or_raspberry/Makefile
2022-03-21 20:28:45 -06:00

11 lines
112 B
Makefile

SOURCES=sys-con-client.c
OUT=sys-con-client
$(OUT): $(SOURCES)
gcc -o $@ $<
.PHONY: clean
clean:
rm $(OUT)