]> Johnzone git - FakeRadio.git/commitdiff
added Makefile
authorJohn Janus <mail@johnzone.org>
Sun, 27 Aug 2017 12:09:48 +0000 (14:09 +0200)
committerJohn Janus <mail@johnzone.org>
Sun, 27 Aug 2017 12:09:48 +0000 (14:09 +0200)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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)
+