box-o-sand/Makefile

17 lines
197 B
Makefile
Raw Normal View History

2011-09-04 04:00:55 +00:00
CFLAGS=-Wall -g
EXERCISES = $(patsubst %.c,%,$(shell ls ex*.c | grep -v ex19))
2011-09-05 02:18:49 +00:00
all: $(EXERCISES)
$(MAKE) -f ex19.mk
2011-09-04 04:00:55 +00:00
clean:
2011-09-05 02:18:49 +00:00
rm -f $(EXERCISES)
2011-10-26 01:19:49 +00:00
rm -f ex19
rm -f object.o
.PHONY: all clean