diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-11-24 19:42:42 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-11-24 19:42:42 +0300 |
commit | fcf77faf19dcb9d75b7842ec7138551bd73418cf (patch) | |
tree | 24da880c4513c3da7899d39b754a0a5cc8407615 /107/Makefile | |
parent | 89d26d5d0e8ff2b026cc99606868699f6fcc08db (diff) |
Added 101 prak
Diffstat (limited to '107/Makefile')
-rw-r--r-- | 107/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/107/Makefile b/107/Makefile new file mode 100644 index 0000000..eb309ff --- /dev/null +++ b/107/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 |