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

25 lines
328 B
Makefile
Raw Normal View History

2016-04-16 19:35:47 +00:00
SHELL = /bin/bash
CFLAGS = -Wall -g -DNDEBUG -fPIC
LDLIBS = -ldl
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
2016-04-16 19:35:47 +00:00
all: $(EXERCISES) libex29.so
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-16 19:35:47 +00:00
libex29.so: libex29.o
$(CC) -shared -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)