1 2 3 4 5 6 7 8 9 10
targets=test_optimizer all:$(targets) test_optimizer:test_optimizer.cpp $(CXX) $< -o $@ -I .. -O3 clean: rm -f $(targets) *.o *~