box-o-sand/lcthw-remnants-2/Makefile
2016-04-13 10:36:55 -04:00

15 lines
155 B
Makefile

CFLAGS=-Wall -g
EXERCISES := $(shell ./list-exercises)
all: $(EXERCISES)
clean:
$(RM) $(EXERCISES)
test:
@./runtests
exercises:
@echo $(EXERCISES)