box-o-sand/Makefile

16 lines
195 B
Makefile

CFLAGS=-Wall -g
EXERCISES = $(patsubst %.c,%,$(shell ls ex*.c | grep -v ex19))
all: $(EXERCISES)
$(MAKE) -f ex19.mk
clean:
rm -f $(EXERCISES)
$(MAKE) -f ex19.mk clean
.PHONY: all clean