diff options
author | Jason Evans <jasone@canonware.com> | 2013-12-04 06:28:10 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2013-12-04 06:28:10 (GMT) |
commit | 95424fc1884112d6b90193481e8ad26247463b4b (patch) | |
tree | 96e618c1a9092cb02f98704d8818d7666ac3bee4 | |
parent | 86abd0dcd8e478759fe409d338d11558c4cec427 (diff) | |
download | jemalloc-95424fc1884112d6b90193481e8ad26247463b4b.zip jemalloc-95424fc1884112d6b90193481e8ad26247463b4b.tar.gz jemalloc-95424fc1884112d6b90193481e8ad26247463b4b.tar.bz2 |
Fix build target to be build_lib, as documented.
Reported by Michael Truog.
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 57020ad..8d3e22a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -141,7 +141,7 @@ TESTS_OBJS := $(TESTS_UNIT_OBJS) $(TESTS_INTEGRATION_OBJS) $(TESTS_STRESS_OBJS) .SECONDARY : $(TESTS_OBJS) # Default target. -all: build +all: build_lib dist: build_doc @@ -235,7 +235,7 @@ $(objroot)test/stress/%$(EXE): $(objroot)test/stress/%.$(O) $(C_JET_OBJS) $(C_TE build_lib_shared: $(DSOS) build_lib_static: $(STATIC_LIBS) -build: build_lib_shared build_lib_static +build_lib: build_lib_shared build_lib_static install_bin: install -d $(BINDIR) |