box-o-sand/lcthw-remnants-2/Makefile
2016-04-14 23:53:01 -04:00

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)