summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-07-15 16:37:00 +0200
committerKevin Chabowski <kevin@kch42.de>2013-07-15 16:37:00 +0200
commit88550c5c3970d220a232f3e9f2aa8c95561997ec (patch)
tree6b23488c7a71fc5b8028378da3bdd84c142b019a
downloadnebula2-88550c5c3970d220a232f3e9f2aa8c95561997ec.tar.gz
nebula2-88550c5c3970d220a232f3e9f2aa8c95561997ec.tar.bz2
nebula2-88550c5c3970d220a232f3e9f2aa8c95561997ec.zip
Initial commit
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f4e475c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CC=gcc -Wall -Werror -pedantic -std=c99
+
+all:
+
+
+
+%.o:%.c
+ $(CC) -c -o $@ $<
+
+clean:
+ rm -f *.o \ No newline at end of file