aboutsummaryrefslogtreecommitdiffstats
path: root/vtek3/Makefile
blob: b89eb0bba3c0be80622fc230e9138eba879c651f (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 plots.gp

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

.PHONY: clean

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