Merge remote-tracking (subtree) branch 'PracticingCpp/master'

This commit is contained in:
Dan Buch
2012-03-03 20:21:13 -05:00
8 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
CPPC := g++
ALL_TARGETS = bin/hello-world
bin/%: src/%.cpp
$(CPPC) $^ -o $@
all: $(ALL_TARGETS)
clean:
rm -vf ./bin/*
test:
./tests/test_hello_world
.PHONY: all clean test