aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-02-08 13:31:11 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-02-08 13:31:11 +0100
commitf2327ada5590f40137416f301762cd3c11ab36b6 (patch)
tree7e49bfbb189ce34c84384a444aed13125bc6c8ff /src/Makefile
parent9240e149758e6e3923151687a7830e8940567ddc (diff)
downloadallocbench-f2327ada5590f40137416f301762cd3c11ab36b6.tar.gz
allocbench-f2327ada5590f40137416f301762cd3c11ab36b6.zip
s/target/allocator/ and remove analyse feature
Use systemwide installed allocators by default
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 7173c99..e29af5d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -12,16 +12,12 @@ LDFLAGS ?= -pthread -static-libgcc
.PHONY: all clean
-all: $(OBJDIR)/print_status_on_exit.so $(OBJDIR)/chattymalloc.so
+all: $(OBJDIR)/print_status_on_exit.so
$(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c | $(OBJDIR)
@echo "Compiling $@...";
$(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $<
-$(OBJDIR)/chattymalloc.so: chattymalloc.c | $(OBJDIR)
- @echo "Compiling $@...";
- $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $<
-
$(OBJDIR):
mkdir $@