aboutsummaryrefslogtreecommitdiffstats
path: root/106/Makefile
blob: 610abc12f8d11024759f32585864beec2691b174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CFLAGS = -std=c++2c -mavx -Iinclude -ggdb

.PHONY: all run_main clean gnuplot 

all: gnuplot

gnuplot:  run_main plots.gp
	gnuplot plots2.gp

run_main: main
	./main

main: main.cpp include/*
	$(CXX) -o $@ $< $(CFLAGS)

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