box-o-sand/Makefile
2011-09-09 09:17:53 -04:00

14 lines
135 B
Makefile

CFLAGS=-Wall -g
EXERCISES = ex1 ex3 ex4 ex5 ex6 ex7 ex8 ex9 ex10
all: $(EXERCISES)
clean:
rm -f $(EXERCISES)
.PHONY: all clean