You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
227 B

SHELL=/bin/bash
CFLAGS=-Wall -g -DNDEBUG
9 years ago
EXERCISES := $(shell ./list-exercises)
all: $(EXERCISES)
9 years ago
ex19: object.o
9 years ago
clean:
shopt -s nullglob ; \
$(RM) $(EXERCISES) *.o *.a
test:
@./runtests
exercises:
@echo $(EXERCISES)