diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-11-18 23:40:21 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-11-18 23:40:21 +0300 |
commit | 89d26d5d0e8ff2b026cc99606868699f6fcc08db (patch) | |
tree | 22181a56c8a1cf2ecae3c167402898c7aed38fb8 /tempalte/Makefile | |
parent | e1bf912316b7f156218aaf5d8571443e47d880ed (diff) |
added tempalte
Diffstat (limited to 'tempalte/Makefile')
-rw-r--r-- | tempalte/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tempalte/Makefile b/tempalte/Makefile new file mode 100644 index 0000000..eb309ff --- /dev/null +++ b/tempalte/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 |