split out low-level memory mapping wrappers

This commit is contained in:
Daniel Micay
2018-08-29 00:53:12 -04:00
parent 8b42e8c3d6
commit 58d929c0f0
4 changed files with 47 additions and 29 deletions

View File

@ -2,12 +2,13 @@ CPPFLAGS := -D_GNU_SOURCE
CFLAGS := -std=c11 -Wall -Wextra -O2 -flto -fPIC -fvisibility=hidden -pedantic
LDFLAGS := -Wl,--as-needed,-z,defs,-z,relro,-z,now
LDLIBS := -lpthread
OBJECTS := chacha.o malloc.o random.o util.o
OBJECTS := chacha.o malloc.o memory.o random.o util.o
hardened_malloc.so: $(OBJECTS)
$(CC) $(CFLAGS) $(LDFLAGS) -shared $^ $(LDLIBS) -o $@
malloc.o: malloc.c malloc.h random.h util.h
malloc.o: malloc.c malloc.h memory.h random.h util.h
memory.o: memory.c memory.h util.h
random.o: random.c random.h chacha.h util.h
util.o: util.c util.h
chacha.o: chacha.c chacha.h