2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 topsrcdir
= @top_srcdir@
12 ifeq (,$(MAKE_VERSION
))
13 $(error GNU Make is required
)
15 ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION
)))
16 $(error GNU Make
3.80 or higher is required
)
20 include $(DEPTH
)/config
/autoconf.mk
27 # tier "base" - basic setup
37 ifeq (android
,$(MOZ_WIDGET_TOOLKIT
))
39 other-licenses
/android \
42 ifeq (gonk
,$(MOZ_WIDGET_TOOLKIT
))
44 other-licenses
/android \
49 tier_base_dirs
+= memory
/mozjemalloc
51 tier_base_dirs
+= memory
/jemalloc
53 tier_base_dirs
+= memory
/build
55 ifndef MOZ_NATIVE_ZLIB
56 tier_base_dirs
+= modules
/zlib
64 ifdef COMPILE_ENVIRONMENT
65 include $(topsrcdir
)/$(MOZ_BUILD_APP
)/build.mk
69 include $(topsrcdir
)/config
/config.mk
71 GARBAGE_DIRS
+= dist _javagen _profile _tests staticlib
72 DIST_GARBAGE
= config.cache config.log config.status
* config-defs.h \
74 unallmakefiles mozilla-config.h \
75 netwerk
/necko-config.h xpcom
/xpcom-config.h xpcom
/xpcom-private.h \
76 $(topsrcdir
)/.mozconfig.mk
$(topsrcdir
)/.mozconfig.out
78 default alldep
all:: $(topsrcdir
)/configure config.status
80 $(RM
) -r
$(DIST
)/include
81 $(RM
) -r
$(DIST
)/private
82 $(RM
) -r
$(DIST
)/public
83 $(RM
) $(DIST
)/chrome.manifest
86 $(topsrcdir
)/configure
: $(topsrcdir
)/configure.in
87 @echo
"STOP! configure.in has changed, and your configure is out of date."
88 @echo
"Please rerun autoconf and re-configure your build directory."
89 @echo
"To ignore this message, touch 'configure' in the source directory,"
90 @echo
"but your build might not succeed."
93 config.status
: $(topsrcdir
)/configure
94 @echo
"STOP! configure has changed and needs to be run in this build directory."
95 @echo
"Please rerun configure."
96 @echo
"To ignore this message, touch 'config.status' in the build directory,"
97 @echo
"but your build might not succeed."
100 # Build pseudo-external modules first when export is explicitly called
103 $(MAKE
) -C config
export
107 # Additional makefile targets to call automated test suites
108 include $(topsrcdir
)/testing
/testsuite-targets.mk
111 include $(topsrcdir
)/config
/rules.mk
114 cat unallmakefiles |
$(XARGS
) rm -f
115 $(RM
) unallmakefiles
$(DIST_GARBAGE
)
117 ifeq ($(OS_ARCH
),WINNT
)
118 # we want to copy PDB files on Windows
119 MAKE_SYM_STORE_ARGS
:= -c
--vcs-info
121 MAKE_SYM_STORE_ARGS
+= -i
123 DUMP_SYMS_BIN ?
= $(topsrcdir
)/toolkit
/crashreporter
/tools
/win32
/dump_syms_vc
$(_MSC_VER
).exe
124 # PDB files don't get moved to dist, so we need to scan the whole objdir
125 MAKE_SYM_STORE_PATH
:= .
127 ifeq ($(OS_ARCH
),Darwin
)
128 # need to pass arch flags for universal builds
129 ifdef UNIVERSAL_BINARY
130 MAKE_SYM_STORE_ARGS
:= -c
-a
"i386 x86_64" --vcs-info
131 MAKE_SYM_STORE_PATH
:= $(DIST
)/universal
133 MAKE_SYM_STORE_ARGS
:= -c
-a
$(OS_TEST
) --vcs-info
134 MAKE_SYM_STORE_PATH
:= $(DIST
)/bin
136 DUMP_SYMS_BIN ?
= $(DIST
)/host
/bin
/dump_syms
138 ifeq (,$(filter-out Linux SunOS
,$(OS_ARCH
)))
139 MAKE_SYM_STORE_ARGS
:= -c
--vcs-info
140 DUMP_SYMS_BIN ?
= $(DIST
)/host
/bin
/dump_syms
141 MAKE_SYM_STORE_PATH
:= $(DIST
)/bin
144 SYM_STORE_SOURCE_DIRS
:= $(topsrcdir
)
146 include $(topsrcdir
)/toolkit
/mozapps
/installer
/package-name.mk
148 ifdef MOZ_SYMBOLS_EXTRA_BUILDID
149 EXTRA_BUILDID
:= -$(MOZ_SYMBOLS_EXTRA_BUILDID
)
152 SYMBOL_INDEX_NAME
= \
153 $(MOZ_APP_NAME
)-$(MOZ_APP_VERSION
)-$(OS_TARGET
)-$(BUILDID
)-$(CPU_ARCH
)$(EXTRA_BUILDID
)-symbols.txt
156 ifdef MOZ_CRASHREPORTER
158 ifeq (mobile
,$(MOZ_BUILD_APP
))
159 $(MAKE
) -C mobile
/xul
/installer elfhack
161 $(MAKE
) -C
$(MOZ_BUILD_APP
)/installer elfhack
164 echo building symbol store
165 $(RM
) -r
$(DIST
)/crashreporter-symbols
166 $(RM
) "$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip"
167 $(NSINSTALL
) -D
$(DIST
)/crashreporter-symbols
168 OBJCOPY
="$(OBJCOPY)" \
169 $(PYTHON
) $(topsrcdir
)/toolkit
/crashreporter
/tools
/symbolstore.py \
170 $(MAKE_SYM_STORE_ARGS
) \
171 --exclude
="*test*" --exclude
="*Test*" \
172 $(foreach dir,$(SYM_STORE_SOURCE_DIRS
),-s
$(dir)) \
174 $(DIST
)/crashreporter-symbols \
175 $(MAKE_SYM_STORE_PATH
) > \
176 $(DIST
)/crashreporter-symbols
/$(SYMBOL_INDEX_NAME
)
178 $(NSINSTALL
) -D
$(DIST
)/$(PKG_PATH
)
179 cd
$(DIST
)/crashreporter-symbols
&& \
180 zip
-r9D
"../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip" .
181 cd
$(DIST
)/crashreporter-symbols
&& \
182 grep
"sym" $(SYMBOL_INDEX_NAME
) > $(SYMBOL_INDEX_NAME
).tmp
&& \
183 mv
$(SYMBOL_INDEX_NAME
).tmp
$(SYMBOL_INDEX_NAME
)
184 cd
$(DIST
)/crashreporter-symbols
&& \
185 zip
-r9D
"../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" .
-i
"*.sym" -i
"*.txt"
186 endif # MOZ_CRASHREPORTER
189 ifdef MOZ_CRASHREPORTER
190 $(SHELL
) $(topsrcdir
)/toolkit
/crashreporter
/tools
/upload_symbols.sh
$(SYMBOL_INDEX_NAME
) "$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip"
194 $(MAKE
) -C
$(MOZ_BUILD_APP
)/installer codesighs
196 # defined in package-name.mk
197 export MOZ_SOURCE_STAMP
199 #XXX: this is a hack, since we don't want to clobber for MSVC
200 # PGO support, but we can't do this test in client.mk
201 ifneq ($(OS_ARCH
)_
$(GNU_CC
), WINNT_
)
202 # No point in clobbering if PGO has been explicitly disabled.
203 ifndef NO_PROFILE_GUIDED_OPTIMIZE
204 maybe_clobber_profiledbuild
: clean
206 maybe_clobber_profiledbuild
:
209 maybe_clobber_profiledbuild
:
210 $(RM
) $(DIST
)/bin
/*.pgc
211 find
$(DIST
)/$(MOZ_APP_NAME
) -name
"*.pgc" -exec mv
{} $(DIST
)/bin \
;
214 # put in our default gdbinit so that the gdb debugging experience is happier.
216 $(INSTALL
) $< $(DIST
)/bin
218 .PHONY
: maybe_clobber_profiledbuild
220 # Look for R_386_PC32 relocations in shared libs, these
221 # break x86_64 builds and SELinux users.
222 ifeq ($(OS_TARGET
)_
$(TARGET_XPCOM_ABI
),Linux_x86-gcc3
)
224 @relcount
=`find $(DIST)/bin -name "*.so" | xargs objdump -R | grep R_386_PC32 | wc -l` && if
test $$relcount -gt
0; then echo
"FAILED: R_386_PC32 relocations detected in a shared library. Did you use a system header without adding it to config/system-headers?"; exit
1; else echo
"PASSED"; fi
227 js
/src
/Makefile
: subsrcdir
:= js
/src