Files
exercises-in-programming-style/06-candy-factory/Makefile
Joergen Edelbo 6148cff95e Added C++ implementation of 06-candy-factory.
You will have to compile (make) the program before running the test.
2013-10-08 16:26:03 +02: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