Working through extra credit for ch20 ex19

This commit is contained in:
Dan Buch
2011-10-26 04:21:16 -04:00
parent 874eb4f3a2
commit 341d626870
6 changed files with 99 additions and 8 deletions

View File

@@ -7,9 +7,13 @@ all: $(EXERCISES)
$(MAKE) -f ex19.mk
test: all
$(MAKE) -f ex19.mk test
clean:
rm -f $(EXERCISES)
$(MAKE) -f ex19.mk clean
.PHONY: all clean
.PHONY: all test clean