aboutsummaryrefslogtreecommitdiffstats
path: root/106/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '106/Makefile')
-rw-r--r--106/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/106/Makefile b/106/Makefile
new file mode 100644
index 0000000..c3dda94
--- /dev/null
+++ b/106/Makefile
@@ -0,0 +1,13 @@
+
+CFLAGS = -std=c++2c -mavx -Iinclude -ggdb
+
+.PHONY: all run_main clean gnuplot
+
+run_main: main
+ ./main
+
+main: main.cpp include/*
+ $(CXX) -o $@ $< $(CFLAGS)
+
+clean:
+ rm -fr main *.png *.plot