diff options
author | Mike Hommey <mh@glandium.org> | 2012-04-16 14:30:26 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2012-04-17 06:05:39 (GMT) |
commit | 45f208e112fcb82e0c98d572fc34259d65d6b6c1 (patch) | |
tree | a19cdbee6a0a7fc6c7a9e4317c0a5c8931a3cbfe /Makefile.in | |
parent | fa08da752bf91c146f77fff59b4ed09b42633260 (diff) | |
download | jemalloc-45f208e112fcb82e0c98d572fc34259d65d6b6c1.zip jemalloc-45f208e112fcb82e0c98d572fc34259d65d6b6c1.tar.gz jemalloc-45f208e112fcb82e0c98d572fc34259d65d6b6c1.tar.bz2 |
Replace fprintf with malloc_printf in tests.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index ef8f717..0dfddea 100644 --- a/Makefile.in +++ b/Makefile.in @@ -148,10 +148,12 @@ $(objroot)test/%.$(O): $(srcroot)test/%.c $(CC) $(CFLAGS) -c $(CPPFLAGS) -I$(objroot)test -o $@ $< @$(CC) -MM $(CPPFLAGS) -I$(objroot)test -MT $@ -o $(@:%.$(O)=%.d) $< -$(objroot)test/%$(EXE): $(objroot)test/%.$(O) \ +$(objroot)test/bitmap$(EXE): $(objroot)src/bitmap.$(O) + +$(objroot)test/%$(EXE): $(objroot)test/%.$(O) $(objroot)src/util.$(O) \ $(objroot)lib/$(LIBJEMALLOC).$(SO) @mkdir -p $(@D) - $(CC) -o $@ $< $(call RPATH,$(objroot)lib) -L$(objroot)lib -ljemalloc$(install_suffix) $(LIBS) + $(CC) -o $@ $(filter %.$(O),$^) $(call RPATH,$(objroot)lib) -L$(objroot)lib -ljemalloc$(install_suffix) $(LIBS) build_lib_shared: $(DSOS) build_lib_static: $(STATIC_LIBS) |