touching up makefile while resurrecting repo

This commit is contained in:
Dan Buch 2011-05-29 04:24:21 -07:00
parent f31b1f6fa8
commit a3d6057e12

View File

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