ex18 extra credit + ex19

This commit is contained in:
Dan Buch
2016-04-13 18:28:47 -04:00
parent a8c603e8e5
commit 9569ff1805
5 changed files with 433 additions and 1 deletions

View File

@@ -1,11 +1,15 @@
SHELL=/bin/bash
CFLAGS=-Wall -g
EXERCISES := $(shell ./list-exercises)
all: $(EXERCISES)
ex19: object.o
clean:
$(RM) $(EXERCISES)
shopt -s nullglob ; \
$(RM) $(EXERCISES) *.o *.a
test:
@./runtests