From: John Janus Date: Sun, 27 Aug 2017 12:09:48 +0000 (+0200) Subject: added Makefile X-Git-Url: https://git.johnzone.org/?a=commitdiff_plain;h=0568eb530356f7ee07e00216e03f6d26583b64ba;p=FakeRadio.git added Makefile --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a02d4f6 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +CC = gcc +CFLAGS = -std=gnu11 -Wall +LDFLAGS = -lwiringPi -lpthread +fakeradio: simple_try.c + $(CC) $(CFLAGS) -o ledtest simple_try.c $(LDFLAGS) +