diff options
author | Jason Evans <je@fb.com> | 2015-01-23 01:55:58 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2015-01-23 01:55:58 (GMT) |
commit | bec6a8da39e8cb7e59550541d429cff5e3dfb6d8 (patch) | |
tree | aec584b3cf1a12337e1f79bf11661c6df3003e76 /Makefile.in | |
parent | 8afcaa9d8133f0a147820799222492d1c251d285 (diff) | |
download | jemalloc-bec6a8da39e8cb7e59550541d429cff5e3dfb6d8.zip jemalloc-bec6a8da39e8cb7e59550541d429cff5e3dfb6d8.tar.gz jemalloc-bec6a8da39e8cb7e59550541d429cff5e3dfb6d8.tar.bz2 |
Implement the jemalloc-config script.
This resolves #133.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index c268d00..da397c3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,7 +73,7 @@ endif LIBJEMALLOC := $(LIBPREFIX)jemalloc$(install_suffix) # Lists of files. -BINS := $(srcroot)bin/pprof $(objroot)bin/jemalloc.sh +BINS := $(srcroot)bin/pprof $(objroot)bin/jemalloc-config $(objroot)bin/jemalloc.sh C_HDRS := $(objroot)include/jemalloc/jemalloc$(install_suffix).h C_SRCS := $(srcroot)src/jemalloc.c $(srcroot)src/arena.c \ $(srcroot)src/atomic.c $(srcroot)src/base.c $(srcroot)src/bitmap.c \ @@ -408,6 +408,7 @@ clean: rm -f $(objroot)*.gcov.* distclean: clean + rm -f $(objroot)bin/jemalloc-config rm -f $(objroot)bin/jemalloc.sh rm -f $(objroot)config.log rm -f $(objroot)config.status |