aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-09-01 09:46:07 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-09-01 09:46:07 +0300
commit92b0d4a7bc960f19ecce474405168fc374de99bd (patch)
treeeda30781790162cf3f82adc9719d25963be4af97
parent670bcb546393f60b92268cf4f1b72524fdd00bf4 (diff)
Add Makefile
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a051ced
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CPPFLAGS=-std=c++11
+CC=g++
+TARGET=jarkko
+
+all: jarkko
+
+jarkko: *.cpp
+ $(CC) *.cpp $(CPPFLAGS) -o $(TARGET)
+
+clean:
+ rm $(TARGET)