diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2025-04-15 00:51:40 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2025-04-15 00:51:40 +0300 |
commit | 45f12ba19761024d335407793ffb8d4823b28149 (patch) | |
tree | da44d238c8db4e8b90cd8e0edcb23cf779d22e1a /207/Makefile | |
parent | 5ee716791bf7a8ca74c1670a6887a53ab92141f6 (diff) |
Started doing 207
Diffstat (limited to '207/Makefile')
-rw-r--r-- | 207/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/207/Makefile b/207/Makefile new file mode 100644 index 0000000..17aed33 --- /dev/null +++ b/207/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 *.print |