nesting basic stuff in its own tree

This commit is contained in:
Dan Buch
2011-05-29 05:30:03 -07:00
parent 1ef082fb9f
commit 3d24f88327
5 changed files with 20 additions and 15 deletions

View File

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