diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-04 22:32:12 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-04 22:32:12 +0300 |
commit | 8269ece153d9f8d1a8a5fb7238adce6aa4226f99 (patch) | |
tree | da560c3866ac00ebb65699cb6bac0e199a877835 /vtek7/Makefile | |
parent | c031795880d2ff2d3b64864a4ba68280a91d21c3 (diff) |
added vtek7
Diffstat (limited to 'vtek7/Makefile')
-rw-r--r-- | vtek7/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vtek7/Makefile b/vtek7/Makefile new file mode 100644 index 0000000..224506f --- /dev/null +++ b/vtek7/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 $< &>/dev/null + +run_main: main + ./main + +main: main.cpp include/* + $(CXX) -o $@ $< $(CFLAGS) + +clean: + rm -fr main *.png *.plot |