box-o-sand/Makefile
2011-09-04 22:18:49 -04:00

14 lines
110 B
Makefile

CFLAGS=-Wall -g
EXERCISES = ex1 ex3 ex4
all: $(EXERCISES)
clean:
rm -f $(EXERCISES)
.PHONY: all clean