diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2025-03-09 23:15:32 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2025-03-09 23:15:32 +0300 |
commit | 320bf2f0155edd67557a3042403eeb843b90a41d (patch) | |
tree | c570a5cec849f12f068f4f4d3853793d974d7d8b /219/Makefile | |
parent | 620b996f2ffe5e9e426b88f57e4f46bc9af7f237 (diff) |
added 219
Diffstat (limited to '219/Makefile')
-rw-r--r-- | 219/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/219/Makefile b/219/Makefile new file mode 100644 index 0000000..224506f --- /dev/null +++ b/219/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 |