Added LD_PRELOAD library to monitor msync calls in testing
This commit is contained in:
13
tests/acceptance/ld_preloads/Makefile
Normal file
13
tests/acceptance/ld_preloads/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
SRC := $(wildcard *.c)
|
||||
OBJS := $(SRC:%.c=%.o)
|
||||
|
||||
all: $(OBJS)
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJS)
|
||||
|
||||
%.o: %.c
|
||||
gcc -shared -fPIC -ldl -o $@ $<
|
||||
|
||||
.PHONY: all clean
|
Reference in New Issue
Block a user