aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-05-05 14:34:39 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-05-05 14:34:39 +0200
commit879e8cd0130754b0f0bf50eeeca18859095bd581 (patch)
tree03cab690230ea8881b4b07542b48cfa502441cbd /src/Makefile
parent2d67f0a1b2269676b87ed4d67aabd2e0c5d2518b (diff)
downloadallocbench-879e8cd0130754b0f0bf50eeeca18859095bd581.tar.gz
allocbench-879e8cd0130754b0f0bf50eeeca18859095bd581.zip
chattymalloc: use external chattymalloc repository
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile
index 84179e2..caceb19 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -14,7 +14,7 @@ MEMSIZE_KB=$(shell free -t | tail -1 | tr -s ' ' | cut -d ' ' -f 2)
MEMSIZE="$(MEMSIZE_KB) * 1024l"
TOOLS = print_status_on_exit.so exec sig_handlers.so
-ALLOCS = chattymalloc.so bumpptr_alloc.so align_to_cl.so
+ALLOCS = bumpptr_alloc.so align_to_cl.so
TARGETS = $(addprefix $(OBJDIR)/allocators/,$(ALLOCS)) $(addprefix $(OBJDIR)/,$(TOOLS))
.PHONY: all clean
@@ -29,10 +29,6 @@ $(OBJDIR)/allocators/align_to_cl.so: align_to_cl.c Makefile
@if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi
$(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $< -ldl
-$(OBJDIR)/allocators/chattymalloc.so: chattymalloc.h chattymalloc.c Makefile
- @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi
- $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ chattymalloc.c -ldl
-
$(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c Makefile
@if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi
$(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $<