Files
exercises-in-programming-style/06-pipeline/Makefile
2019-08-12 14:38:16 -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