diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2025-04-14 00:34:52 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2025-04-14 00:34:52 +0300 |
commit | 5ee716791bf7a8ca74c1670a6887a53ab92141f6 (patch) | |
tree | 0a5a522f89d258ec36f4af23cc60aaa578abe7e8 /234/Makefile | |
parent | 320bf2f0155edd67557a3042403eeb843b90a41d (diff) |
added 218, 226, 234, 240
Diffstat (limited to '234/Makefile')
-rw-r--r-- | 234/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/234/Makefile b/234/Makefile new file mode 100644 index 0000000..224506f --- /dev/null +++ b/234/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 |