initial commit

This commit is contained in:
Daniel Micay
2018-08-21 15:23:22 -04:00
commit 70d61b6662
12 changed files with 1086 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
CPPFLAGS := -D_GNU_SOURCE
CFLAGS := -std=c11 -Wall -Wextra -O2 -flto -fPIC -fvisibility=hidden -pedantic
LDFLAGS := -Wl,--as-needed
LDLIBS := -lpthread
OBJECTS := malloc.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
random.o: random.c random.h util.h
util.o: util.c util.h
clean:
rm -f hardened_malloc.so $(OBJECTS)