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

all:$(targets)

test_optimizer:test_optimizer.cpp
	$(CXX) $< -o $@ -I .. -O3 -g


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