15 lines
155 B
Makefile
15 lines
155 B
Makefile
CFLAGS=-Wall -g
|
|
|
|
EXERCISES := $(shell ./list-exercises)
|
|
|
|
all: $(EXERCISES)
|
|
|
|
clean:
|
|
$(RM) $(EXERCISES)
|
|
|
|
test:
|
|
@./runtests
|
|
|
|
exercises:
|
|
@echo $(EXERCISES)
|