Files
flexnbd-c/tests/acceptance/ld_preloads/Makefile
2018-02-07 21:45:20 +00:00

14 lines
146 B
Makefile

SRC := $(wildcard *.c)
OBJS := $(SRC:%.c=%.o)
all: $(OBJS)
clean:
$(RM) $(OBJS)
%.o: %.c
gcc -shared -fPIC -ldl -o $@ $<
.PHONY: all clean