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

.PHONY: all run_main clean gnuplot 

run_main: main
	./main

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

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