aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2015-07-02 16:08:23 -0700
committerThibaut Horel <thibaut.horel@gmail.com>2015-07-02 16:08:23 -0700
commita7aab981196532cfecf9b23d1d68734b839a2aaf (patch)
treecd21fcf2fd57778abca55df8e6d8efa97d4d7e1d /Makefile
parent759858311aab27cfb3265835c58a56b612731fb0 (diff)
downloadcover-a7aab981196532cfecf9b23d1d68734b839a2aaf.tar.gz
Adding Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..74cdaf7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+SRC=$(wildcard *.c)
+OBJ=$(SRC:.c=.o)
+CFLAGS=-Wall -pedantic -O3 -MMD -MP
+
+cover: $(OBJ)
+
+clean:
+ rm *.o *.d
+
+-include $(SRC:.c=.d)