aboutsummaryrefslogtreecommitdiffstats
path: root/vtek3/Makefile
blob: fd22144b55922bdd1c3bdf20670fb04f95b26d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CXXFLAGS += -std=c++2c -mavx2 -Iinclude
CXXFLAGS += -ggdb

run: main 
	./main
	gnuplot -q plots.gp 2> /dev/null 

main: main.cpp
	$(CXX) -o $@ $^ $(CXXFLAGS)

.PHONY: clean

clean:
	rm -fr plot*.data main *.png