2012-03-31 00:23:19 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2012-03-31 00:23:19 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = memory
|
|
|
|
LIBRARY_NAME = memory
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
STLFLAGS =
|
2012-05-04 00:46:27 -07:00
|
|
|
ifdef MOZ_GLUE_PROGRAM_LDFLAGS
|
|
|
|
SDK_LIBRARY = $(REAL_LIBRARY)
|
|
|
|
DIST_INSTALL = 1
|
|
|
|
endif
|
2012-03-31 00:23:19 -07:00
|
|
|
|
|
|
|
CSRCS = extraMallocFuncs.c
|
|
|
|
|
2012-06-07 01:41:59 -07:00
|
|
|
ifdef MOZ_JEMALLOC
|
|
|
|
CSRCS += mozjemalloc_compat.c
|
2012-10-17 07:36:49 -07:00
|
|
|
ifndef MOZ_NATIVE_JEMALLOC
|
2012-06-07 01:41:59 -07:00
|
|
|
SHARED_LIBRARY_LIBS += $(call EXPAND_LIBNAME_PATH,jemalloc,$(DEPTH)/memory/jemalloc)
|
2012-10-17 07:36:49 -07:00
|
|
|
endif
|
2012-06-07 01:41:59 -07:00
|
|
|
else
|
2012-06-07 01:41:58 -07:00
|
|
|
SHARED_LIBRARY_LIBS += $(call EXPAND_LIBNAME_PATH,jemalloc,$(DEPTH)/memory/mozjemalloc)
|
2012-06-07 01:41:59 -07:00
|
|
|
endif
|
2012-05-04 00:46:27 -07:00
|
|
|
|
2012-03-31 00:23:19 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|