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
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.
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 *****
39 topsrcdir
= @top_srcdir@
44 ifeq (,$(MAKE_VERSION
))
45 $(error GNU Make is required
)
47 ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION
)))
48 $(error GNU Make
3.80 or higher is required
)
52 include $(DEPTH
)/config
/autoconf.mk
59 # tier "base" - basic setup
73 ifdef COMPILE_ENVIRONMENT
74 include $(topsrcdir
)/$(MOZ_BUILD_APP
)/build.mk
81 tier_testharness_dirs
+= testing
/xpcshell
84 include $(topsrcdir
)/config
/config.mk
86 GARBAGE_DIRS
+= dist _javagen _profile _tests staticlib
87 DIST_GARBAGE
= config.cache config.log config.status config-defs.h \
88 dependencies.beos config
/autoconf.mk \
89 unallmakefiles mozilla-config.h \
90 netwerk
/necko-config.h xpcom
/xpcom-config.h xpcom
/xpcom-private.h \
91 $(topsrcdir
)/.mozconfig.mk
$(topsrcdir
)/.mozconfig.out
95 $(PYTHON
) $(topsrcdir
)/build
/mobile
/devicemanager-utils.py copy
$(DIST
)/bin
98 default alldep
all:: $(topsrcdir
)/configure config.status
100 $(RM
) -rf
$(DIST
)/include
101 $(RM
) -rf
$(DIST
)/private
102 $(RM
) -rf
$(DIST
)/public
103 $(RM
) -rf
$(DIST
)/bin
/components
106 $(topsrcdir
)/configure
: $(topsrcdir
)/configure.in
107 @echo
"STOP! configure.in has changed, and your configure is out of date."
108 @echo
"Please rerun autoconf and re-configure your build directory."
109 @echo
"To ignore this message, touch 'configure' in the source directory,"
110 @echo
"but your build might not succeed."
113 config.status
: $(topsrcdir
)/configure
114 @echo
"STOP! configure has changed and needs to be run in this build directory."
115 @echo
"Please rerun configure."
116 @echo
"To ignore this message, touch 'config.status' in the build directory,"
117 @echo
"but your build might not succeed."
120 # Build pseudo-external modules first when export is explicitly called
122 $(RM
) -rf
$(DIST
)/sdk
123 $(MAKE
) -C config
export
127 # Additional makefile targets to call automated test suites
128 include $(topsrcdir
)/testing
/testsuite-targets.mk
130 # OS X Universal builds will want to call this, so stub it out
134 include $(topsrcdir
)/config
/rules.mk
137 cat unallmakefiles |
$(XARGS
) rm -f
138 rm -f unallmakefiles
$(DIST_GARBAGE
)
140 ifeq ($(OS_ARCH
),WINNT
)
141 # we want to copy PDB files on Windows
142 MAKE_SYM_STORE_ARGS
:= -c
144 MAKE_SYM_STORE_ARGS
+= -i
146 ifeq (,$(CYGWIN_WRAPPER
))
147 # this doesn't work with Cygwin Python
148 MAKE_SYM_STORE_ARGS
+= --vcs-info
150 DUMP_SYMS_BIN ?
= $(topsrcdir
)/toolkit
/crashreporter
/tools
/win32
/dump_syms.exe
151 # PDB files don't get moved to dist, so we need to scan the whole objdir
152 MAKE_SYM_STORE_PATH
:= .
154 ifeq ($(OS_ARCH
),Darwin
)
155 # need to pass arch flags for universal builds
156 ifdef UNIVERSAL_BINARY
157 MAKE_SYM_STORE_ARGS
:= -c
-a
"ppc i386" --vcs-info
158 MAKE_SYM_STORE_PATH
:= $(DIST
)/universal
160 MAKE_SYM_STORE_ARGS
:= -c
-a
$(OS_TEST
) --vcs-info
161 MAKE_SYM_STORE_PATH
:= $(DIST
)/bin
163 DUMP_SYMS_BIN ?
= $(DIST
)/host
/bin
/dump_syms
165 ifeq (,$(filter-out Linux SunOS
,$(OS_ARCH
)))
166 MAKE_SYM_STORE_ARGS
:= -c
--vcs-info
167 DUMP_SYMS_BIN ?
= $(DIST
)/host
/bin
/dump_syms
168 MAKE_SYM_STORE_PATH
:= $(DIST
)/bin
171 SYM_STORE_SOURCE_DIRS
:= $(topsrcdir
)
173 include $(topsrcdir
)/toolkit
/mozapps
/installer
/package-name.mk
175 ifdef MOZ_SYMBOLS_EXTRA_BUILDID
176 EXTRA_BUILDID
:= -$(MOZ_SYMBOLS_EXTRA_BUILDID
)
179 SYMBOL_INDEX_NAME
= \
180 $(MOZ_APP_NAME
)-$(MOZ_APP_VERSION
)-$(OS_ARCH
)-$(BUILDID
)$(EXTRA_BUILDID
)-symbols.txt
183 ifdef MOZ_CRASHREPORTER
184 echo building symbol store
185 $(RM
) -rf
$(DIST
)/crashreporter-symbols
186 $(RM
) -f
"$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip"
187 $(NSINSTALL
) -D
$(DIST
)/crashreporter-symbols
188 $(PYTHON
) $(topsrcdir
)/toolkit
/crashreporter
/tools
/symbolstore.py \
189 $(MAKE_SYM_STORE_ARGS
) \
190 $(foreach dir,$(SYM_STORE_SOURCE_DIRS
),-s
$(dir)) \
192 $(DIST
)/crashreporter-symbols \
193 $(MAKE_SYM_STORE_PATH
) > \
194 $(DIST
)/crashreporter-symbols
/$(SYMBOL_INDEX_NAME
)
196 $(NSINSTALL
) -D
$(DIST
)/$(PKG_PATH
)
197 cd
$(DIST
)/crashreporter-symbols
&& \
198 zip
-r9D
"../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip" .
199 cd
$(DIST
)/crashreporter-symbols
&& \
200 zip
-r9D
"../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" .
-i
"*.sym"
203 ifdef SYMBOLSTORE_PATH
204 echo building symbol store with symstore.exe
205 $(RM
) -rf
$(DIST
)/symbols
206 $(RM
) -f
"$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip"
207 $(NSINSTALL
) -D
$(DIST
)/symbols
208 $(SYMBOLSTORE_PATH
) add
-r
-f
"$(subst /,\,$(shell pwd -W))\*.PDB" \
209 -s
$(DIST
)/symbols
/ -t
"$(MOZ_PKG_APPNAME)" -v
"$(MOZ_PKG_VERSION)"
211 $(NSINSTALL
) -D
$(DIST
)/$(PKG_PATH
)
212 cd
$(DIST
)/symbols
&& \
213 zip
-r9D
"../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" .
214 endif # SYMBOLSTORE_PATH
216 endif # MOZ_CRASHREPORTER
219 ifdef MOZ_CRASHREPORTER
220 $(SHELL
) $(topsrcdir
)/toolkit
/crashreporter
/tools
/upload_symbols.sh
"$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip"
223 # defined in package-name.mk
224 export MOZ_SOURCE_STAMP
226 #XXX: this is a hack, since we don't want to clobber for MSVC
227 # PGO support, but we can't do this test in client.mk
228 ifneq ($(OS_ARCH
)_
$(GNU_CC
), WINNT_
)
229 # No point in clobbering if PGO has been explicitly disabled.
230 ifndef NO_PROFILE_GUIDED_OPTIMIZE
231 maybe_clobber_profiledbuild
: clean
233 maybe_clobber_profiledbuild
:
236 maybe_clobber_profiledbuild
:
239 .PHONY
: maybe_clobber_profiledbuild