diff options
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 |