diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-02 16:25:38 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-02 16:25:38 +0300 |
commit | 1e4e6f1e06d51712954579b89dc0a7e2c298667e (patch) | |
tree | 5092b19642ed050601366fd1757beee114991a63 /110/Makefile | |
parent | 6d4163c2dd3d54d20335b3fa1528a817cdbe8cd6 (diff) |
added 110 prak
Diffstat (limited to '110/Makefile')
-rw-r--r-- | 110/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/110/Makefile b/110/Makefile new file mode 100644 index 0000000..eb309ff --- /dev/null +++ b/110/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 |