Files
exercises-in-programming-style/05-pipeline/Makefile
2014-03-14 10:19:21 -07:00

9 lines
103 B
Makefile

CPP_FLAGS=-std=gnu++0x
tf-06: tf-06.cpp
$(CXX) $(CPP_FLAGS) -o $@ $<
.PHONY: clean
clean:
rm tf-06