box-o-sand/lcthw-remnants-2/Makefile

21 lines
246 B
Makefile
Raw Normal View History

2016-04-13 22:28:47 +00:00
SHELL=/bin/bash
2016-04-15 03:53:01 +00:00
CFLAGS=-Wall -g -DNDEBUG
2016-04-12 03:21:45 +00:00
2016-04-13 14:36:55 +00:00
EXERCISES := $(shell ./list-exercises)
2016-04-13 13:41:20 +00:00
all: $(EXERCISES)
2016-04-12 03:25:45 +00:00
2016-04-13 22:28:47 +00:00
ex19: object.o
ex22_main: ex22.o
2016-04-12 03:21:45 +00:00
clean:
2016-04-13 22:28:47 +00:00
shopt -s nullglob ; \
$(RM) $(EXERCISES) *.o *.a
2016-04-13 13:41:20 +00:00
test:
2016-04-13 14:36:55 +00:00
@./runtests
exercises:
@echo $(EXERCISES)