Bug 616542 - Shorten file path length of mochitest; r=ted
[gecko.git] / Makefile.in
blob7b7a6535fdf8d51e4b6adb23451a606b4f9a5ac6
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 # The contents of this file are subject to the Mozilla Public License Version
6 # 1.1 (the "License"); you may not use this file except in compliance with
7 # the License. You may obtain a copy of the License at
8 # http://www.mozilla.org/MPL/
10 # Software distributed under the License is distributed on an "AS IS" basis,
11 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 # for the specific language governing rights and limitations under the
13 # License.
15 # The Original Code is mozilla.org code.
17 # The Initial Developer of the Original Code is
18 # Netscape Communications Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 1998
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 DEPTH = .
39 topsrcdir = @top_srcdir@
40 srcdir = @srcdir@
41 VPATH = @srcdir@
43 ifndef .PYMAKE
44 ifeq (,$(MAKE_VERSION))
45 $(error GNU Make is required)
46 endif
47 ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION)))
48 $(error GNU Make 3.80 or higher is required)
49 endif
50 endif
52 include $(DEPTH)/config/autoconf.mk
54 default::
56 TIERS += base
59 # tier "base" - basic setup
61 tier_base_dirs = \
62 config \
63 build \
64 probes \
65 $(NULL)
67 ifndef LIBXUL_SDK
68 ifeq ($(OS_TARGET),Android)
69 tier_base_dirs += other-licenses/android
70 endif
72 tier_base_dirs += memory
73 endif
75 ifdef COMPILE_ENVIRONMENT
76 include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
77 endif
80 include $(topsrcdir)/config/config.mk
82 GARBAGE_DIRS += dist _javagen _profile _tests staticlib
83 DIST_GARBAGE = config.cache config.log config.status config-defs.h \
84 config/autoconf.mk \
85 unallmakefiles mozilla-config.h \
86 netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
87 $(topsrcdir)/.mozconfig.mk $(topsrcdir)/.mozconfig.out
89 default alldep all:: $(topsrcdir)/configure config.status
90 $(RM) -r $(DIST)/sdk
91 $(RM) -r $(DIST)/include
92 $(RM) -r $(DIST)/private
93 $(RM) -r $(DIST)/public
94 $(RM) -r $(DIST)/bin/components
95 $(RM) -r _tests
96 $(RM) -r $(mochitestdir)
98 $(topsrcdir)/configure: $(topsrcdir)/configure.in
99 @echo "STOP! configure.in has changed, and your configure is out of date."
100 @echo "Please rerun autoconf and re-configure your build directory."
101 @echo "To ignore this message, touch 'configure' in the source directory,"
102 @echo "but your build might not succeed."
103 @exit 1
105 config.status: $(topsrcdir)/configure
106 @echo "STOP! configure has changed and needs to be run in this build directory."
107 @echo "Please rerun configure."
108 @echo "To ignore this message, touch 'config.status' in the build directory,"
109 @echo "but your build might not succeed."
110 @exit 1
112 # Build pseudo-external modules first when export is explicitly called
113 export::
114 $(RM) -r $(DIST)/sdk
115 $(MAKE) -C config export
116 $(MAKE) tier_nspr
118 ifdef ENABLE_TESTS
119 # Additional makefile targets to call automated test suites
120 include $(topsrcdir)/testing/testsuite-targets.mk
121 endif
123 include $(topsrcdir)/config/rules.mk
125 distclean::
126 cat unallmakefiles | $(XARGS) rm -f
127 $(RM) unallmakefiles $(DIST_GARBAGE)
129 ifeq ($(OS_ARCH),WINNT)
130 # we want to copy PDB files on Windows
131 MAKE_SYM_STORE_ARGS := -c --vcs-info
132 ifdef PDBSTR_PATH
133 MAKE_SYM_STORE_ARGS += -i
134 endif
135 DUMP_SYMS_BIN ?= $(topsrcdir)/toolkit/crashreporter/tools/win32/dump_syms_vc$(_MSC_VER).exe
136 # PDB files don't get moved to dist, so we need to scan the whole objdir
137 MAKE_SYM_STORE_PATH := .
138 endif
139 ifeq ($(OS_ARCH),Darwin)
140 # need to pass arch flags for universal builds
141 ifdef UNIVERSAL_BINARY
142 MAKE_SYM_STORE_ARGS := -c -a "i386 x86_64" --vcs-info
143 MAKE_SYM_STORE_PATH := $(DIST)/universal
144 else
145 MAKE_SYM_STORE_ARGS := -c -a $(OS_TEST) --vcs-info
146 MAKE_SYM_STORE_PATH := $(DIST)/bin
147 endif
148 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
149 endif
150 ifeq (,$(filter-out Linux SunOS,$(OS_ARCH)))
151 MAKE_SYM_STORE_ARGS := -c --vcs-info
152 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
153 MAKE_SYM_STORE_PATH := $(DIST)/bin
154 endif
156 SYM_STORE_SOURCE_DIRS := $(topsrcdir)
158 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
160 ifdef MOZ_SYMBOLS_EXTRA_BUILDID
161 EXTRA_BUILDID := -$(MOZ_SYMBOLS_EXTRA_BUILDID)
162 endif
164 SYMBOL_INDEX_NAME = \
165 $(MOZ_APP_NAME)-$(MOZ_APP_VERSION)-$(OS_TARGET)-$(BUILDID)$(EXTRA_BUILDID)-symbols.txt
167 buildsymbols:
168 ifdef MOZ_CRASHREPORTER
169 ifdef USE_ELF_HACK
170 $(MAKE) -C $(MOZ_BUILD_APP)/installer elfhack
171 endif
172 echo building symbol store
173 $(RM) -r $(DIST)/crashreporter-symbols
174 $(RM) "$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip"
175 $(NSINSTALL) -D $(DIST)/crashreporter-symbols
176 OBJCOPY="$(OBJCOPY)" \
177 $(PYTHON) $(topsrcdir)/toolkit/crashreporter/tools/symbolstore.py \
178 $(MAKE_SYM_STORE_ARGS) \
179 $(foreach dir,$(SYM_STORE_SOURCE_DIRS),-s $(dir)) \
180 $(DUMP_SYMS_BIN) \
181 $(DIST)/crashreporter-symbols \
182 $(MAKE_SYM_STORE_PATH) > \
183 $(DIST)/crashreporter-symbols/$(SYMBOL_INDEX_NAME)
184 echo packing symbols
185 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
186 cd $(DIST)/crashreporter-symbols && \
187 zip -r9D "../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip" .
188 cd $(DIST)/crashreporter-symbols && \
189 grep "sym" $(SYMBOL_INDEX_NAME) > $(SYMBOL_INDEX_NAME).tmp && \
190 mv $(SYMBOL_INDEX_NAME).tmp $(SYMBOL_INDEX_NAME)
191 cd $(DIST)/crashreporter-symbols && \
192 zip -r9D "../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" . -i "*.sym" -i "*.txt"
193 endif # MOZ_CRASHREPORTER
195 uploadsymbols:
196 ifdef MOZ_CRASHREPORTER
197 $(SHELL) $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.sh $(SYMBOL_INDEX_NAME) "$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip"
198 endif
200 codesighs:
201 $(MAKE) -C $(MOZ_BUILD_APP)/installer codesighs
203 # defined in package-name.mk
204 export MOZ_SOURCE_STAMP
206 #XXX: this is a hack, since we don't want to clobber for MSVC
207 # PGO support, but we can't do this test in client.mk
208 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
209 # No point in clobbering if PGO has been explicitly disabled.
210 ifndef NO_PROFILE_GUIDED_OPTIMIZE
211 maybe_clobber_profiledbuild: clean
212 else
213 maybe_clobber_profiledbuild:
214 endif
215 else
216 maybe_clobber_profiledbuild:
217 endif
219 .PHONY: maybe_clobber_profiledbuild
221 # Look for R_386_PC32 relocations in shared libs, these
222 # break x86_64 builds and SELinux users.
223 ifeq ($(OS_TARGET)_$(TARGET_XPCOM_ABI),Linux_x86-gcc3)
224 scheck::
225 @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
226 endif