box-o-sand/Makefile
2011-09-10 00:22:25 -04:00

14 lines
140 B
Makefile

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