aboutsummaryrefslogtreecommitdiffstats
path: root/test/makefile
blob: 9933620beeb4b740bc98b010928578c16b7749d4 (plain)
1
2
3
4
5
6
7
8
9
10
targets=test_optimizer

all:$(targets)

test_optimizer:test_optimizer.cpp
	g++ $< -o $@ -I .. -O3


clean:
	rm -f $(targets) *.o *~