up to chapter 7

This commit is contained in:
Dan Buch
2011-09-04 22:18:49 -04:00
parent a1902d9af4
commit 357323bdc8
4 changed files with 30 additions and 2 deletions

View File

@@ -1,11 +1,13 @@
CFLAGS=-Wall -g
EXERCISES = ex1 ex3 ex4
all: ex1
all: $(EXERCISES)
clean:
rm -f ex1
rm -f $(EXERCISES)
.PHONY: all clean