diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-10 19:19:21 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-10 19:19:21 +0100 |
| commit | d28138d2425214303491f14164c482e1e83f8ca9 (patch) | |
| tree | 556d292187040c3691450aa3e7f17f158457eef5 /src/Makefile | |
| parent | d16cc247bbf4f3cb4f9c6ce31bfe1bec4bdb8dd9 (diff) | |
| download | allocbench-d28138d2425214303491f14164c482e1e83f8ca9.tar.gz allocbench-d28138d2425214303491f14164c482e1e83f8ca9.zip | |
add some bumpptr flavors
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 6a46af9..48b35f9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -25,6 +25,14 @@ $(OBJDIR)/allocators/bumpptr_alloc.so: bumpptr_alloc.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< +$(OBJDIR)/allocators/bumpptr_alloc_always_align.so: bumpptr_alloc_always_align.c.c Makefile + @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi + $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< + +$(OBJDIR)/allocators/bumpptr_alloc_single_tsd.so: bumpptr_alloc_single_tsd.c.c Makefile + @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi + $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< + $(OBJDIR)/allocators/speedymalloc.so: speedymalloc.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< |
