summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSamuel Fadel <samuel@nihil.ws>2018-07-25 16:16:47 -0300
committerSamuel Fadel <samuel@nihil.ws>2018-07-25 16:16:47 -0300
commit3b12fea57f9cdae45bf8801dd274eb3669530e1c (patch)
tree3dddeb540666f84b8dd71c23c063d6e780ae80e6 /Makefile
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..79e4712
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+CXXFLAGS=-O2 -Wall
+
+all: spark
+
+spark: src/main.cpp
+ g++ $(CXXFLAGS) -o spark src/main.cpp
+
+clean:
+ rm -f spark