aboutsummaryrefslogtreecommitdiffstats
path: root/example/Makefile
blob: 24fc4f0d6d53f2ba13f7c02304d1195c539b7bd3 (plain)
1
2
3
4
5
6
7
8
target=test_optimizer


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

clean:
	rm -f $(target)