diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2018-08-24 22:00:03 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2018-08-24 22:03:29 +0200 |
| commit | cb79bac50ca1da1f0f02455bd0e564578ab9ef05 (patch) | |
| tree | a2212ea2c2fb910e45fcedd90d0ee91ef123d383 /Makefile | |
| parent | 51ba31ed4a2548fb12d9e1e2f2115213a0aaa1f4 (diff) | |
| download | allocbench-cb79bac50ca1da1f0f02455bd0e564578ab9ef05.tar.gz allocbench-cb79bac50ca1da1f0f02455bd0e564578ab9ef05.zip | |
intruduce new way of handling analyse and cleanup mysql
chattymalloc writes now to chattymalloc.data
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -29,7 +29,12 @@ MAKEFILE_LIST = Makefile TARGETS = $(OBJPRE:.o=) -all: $(TARGETS) $(OBJDIR)/chattymalloc.so +all: $(TARGETS) $(OBJDIR)/chattymalloc.so $(OBJDIR)/print_status_on_exit.so + +$(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c $(MAKEFILE_LIST) + @echo "cc $@" + @if test \( ! \( -d $(@D) \) \) ;then mkdir -p $(@D);fi + $(VERBOSE) $(CC) -shared $(CFLAGS) -o $@ $< -ldl $(OBJDIR)/chattymalloc.so: chattymalloc.c $(MAKEFILE_LIST) @echo "cc $@" |
