aboutsummaryrefslogtreecommitdiffstats
path: root/vtek3/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-11-18 23:40:21 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-11-18 23:40:21 +0300
commit89d26d5d0e8ff2b026cc99606868699f6fcc08db (patch)
tree22181a56c8a1cf2ecae3c167402898c7aed38fb8 /vtek3/Makefile
parente1bf912316b7f156218aaf5d8571443e47d880ed (diff)
added tempalte
Diffstat (limited to 'vtek3/Makefile')
-rw-r--r--vtek3/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/vtek3/Makefile b/vtek3/Makefile
index 4f9a99a..b89eb0b 100644
--- a/vtek3/Makefile
+++ b/vtek3/Makefile
@@ -2,5 +2,15 @@
CXXFLAGS += -std=c++2c -mavx2 -Iinclude
CXXFLAGS += -ggdb
+run: main
+ ./main
+ gnuplot plots.gp
+
main: main.cpp
$(CXX) -o $@ $^ $(CXXFLAGS)
+
+.PHONY: clean
+
+clean:
+ rm -fr plot*.data main *.png
+