aboutsummaryrefslogtreecommitdiffstats
path: root/101/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-11-24 19:47:38 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-11-24 19:47:38 +0300
commit8237f82ebd2299addc6dec837d5f850cc5fd1b5c (patch)
tree06f32b24512f54a466e4bd6a0e3d51d0bcf68aef /101/Makefile
parent33e3d9540237b0faef3c7d9aeab6dedbccbe3707 (diff)
parentfcf77faf19dcb9d75b7842ec7138551bd73418cf (diff)
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '101/Makefile')
-rw-r--r--101/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/101/Makefile b/101/Makefile
new file mode 100644
index 0000000..eb309ff
--- /dev/null
+++ b/101/Makefile
@@ -0,0 +1,18 @@
+
+CFLAGS = -std=c++2c -mavx -Iinclude -ggdb
+
+.PHONY: all run_main clean gnuplot
+
+run: gnuplot
+
+gnuplot: plots.gp run_main
+ gnuplot $<
+
+run_main: main
+ ./main
+
+main: main.cpp include/*
+ $(CXX) -o $@ $< $(CFLAGS)
+
+clean:
+ rm -fr main *.png *.plot