diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-24 17:45:56 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-24 17:45:56 +0100 |
| commit | b8c9dd405ffe7cf1e36c2eb4cb6c278e6ac1fbaa (patch) | |
| tree | 4e986a154bd4236658508c39f18ccccc5c6b51b7 /src/Makefile | |
| parent | 24ab324d69a163f691d94f0cd3bbc09fcd2ef947 (diff) | |
| parent | 7773231fdcadf7317a0c004db50f5a3400d7835e (diff) | |
| download | allocbench-b8c9dd405ffe7cf1e36c2eb4cb6c278e6ac1fbaa.tar.gz allocbench-b8c9dd405ffe7cf1e36c2eb4cb6c278e6ac1fbaa.zip | |
Merge branch 'binary_chattymalloc'
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 6d25bf9..71b4967 100644 --- a/src/Makefile +++ b/src/Makefile @@ -29,9 +29,9 @@ $(OBJDIR)/allocators/speedymalloc.so: speedymalloc.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< -$(OBJDIR)/allocators/chattymalloc.so: chattymalloc.c Makefile +$(OBJDIR)/allocators/chattymalloc.so: chattymalloc.h chattymalloc.c Makefile @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi - $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $< -ldl + $(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 |
