summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2014-05-21 08:44:42 (GMT)
committerJason Evans <je@fb.com>2014-05-27 22:13:35 (GMT)
commit1ad4a6e9f9ba55c874d0ad63041e09b96b459b1f (patch)
treef755643f43e5834a3989f3564a7d79f3f3bf9354 /Makefile.in
parentf41f14366877538b03109ecf346dbff2e21bbb16 (diff)
downloadjemalloc-1ad4a6e9f9ba55c874d0ad63041e09b96b459b1f.zip
jemalloc-1ad4a6e9f9ba55c874d0ad63041e09b96b459b1f.tar.gz
jemalloc-1ad4a6e9f9ba55c874d0ad63041e09b96b459b1f.tar.bz2
Add missing $(EXE) to filter TESTS_UNIT_AUX_OBJS
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 65d73db..839bb08 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -213,7 +213,7 @@ define make-unit-link-dep
$(1): TESTS_UNIT_LINK_OBJS += $(2)
$(1): $(2)
endef
-$(foreach test, $(TESTS_UNIT:$(srcroot)test/unit/%.c=$(objroot)test/unit/%$(EXE)), $(eval $(call make-unit-link-dep,$(test),$(filter $(test:%=%_a.$(O)) $(test:%=%_b.$(O)),$(TESTS_UNIT_AUX_OBJS)))))
+$(foreach test, $(TESTS_UNIT:$(srcroot)test/unit/%.c=$(objroot)test/unit/%$(EXE)), $(eval $(call make-unit-link-dep,$(test),$(filter $(test:%$(EXE)=%_a.$(O)) $(test:%$(EXE)=%_b.$(O)),$(TESTS_UNIT_AUX_OBJS)))))
$(TESTS_INTEGRATION_OBJS): CPPFLAGS += -DJEMALLOC_INTEGRATION_TEST
$(TESTS_STRESS_OBJS): CPPFLAGS += -DJEMALLOC_STRESS_TEST
$(TESTS_OBJS): $(objroot)test/%.$(O): $(srcroot)test/%.c