box-o-sand/Makefile
2011-09-08 22:41:34 -04:00

14 lines
130 B
Makefile

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