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