Bug 846687 - Set the transport as non-seekable if the server sends Accept-Ranges...
[gecko.git] / Makefile.in
blobf71ba1c6a721f2b22917b9cb48e116e100b478ea
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/.
6 DEPTH = @DEPTH@
7 topsrcdir = @top_srcdir@
8 srcdir = @srcdir@
9 VPATH = @srcdir@
11 ifndef .PYMAKE
12 ifeq (,$(MAKE_VERSION))
13 $(error GNU Make is required)
14 endif
15 ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION)))
16 $(error GNU Make 3.80 or higher is required)
17 endif
18 endif
20 include $(DEPTH)/config/autoconf.mk
22 default::
24 ifdef COMPILE_ENVIRONMENT
25 include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
26 endif
29 include $(topsrcdir)/config/config.mk
31 GARBAGE_DIRS += dist _javagen _profile _tests staticlib
32 DIST_GARBAGE = config.cache config.log config.status* config-defs.h \
33 config/autoconf.mk \
34 unallmakefiles mozilla-config.h \
35 netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
36 $(topsrcdir)/.mozconfig.mk $(topsrcdir)/.mozconfig.out
38 default alldep all:: $(topsrcdir)/configure config.status
39 $(RM) -r $(DIST)/sdk
40 $(RM) -r $(DIST)/include
41 $(RM) -r $(DIST)/private
42 $(RM) -r $(DIST)/public
43 $(RM) $(DIST)/bin/chrome.manifest $(DIST)/bin/components/components.manifest
44 $(RM) -r _tests
46 $(topsrcdir)/configure: $(topsrcdir)/configure.in
47 @echo "STOP! configure.in has changed, and your configure is out of date."
48 @echo "Please rerun autoconf and re-configure your build directory."
49 @echo "To ignore this message, touch 'configure' in the source directory,"
50 @echo "but your build might not succeed."
51 @exit 1
53 config.status: $(topsrcdir)/configure
54 @echo "STOP! configure has changed and needs to be run in this build directory."
55 @echo "Please rerun configure."
56 @echo "To ignore this message, touch 'config.status' in the build directory,"
57 @echo "but your build might not succeed."
58 @exit 1
60 # Build pseudo-external modules first when export is explicitly called
61 export::
62 $(RM) -r $(DIST)/sdk
63 $(MAKE) -C config export
64 $(MAKE) tier_nspr
66 ifdef ENABLE_TESTS
67 # Additional makefile targets to call automated test suites
68 include $(topsrcdir)/testing/testsuite-targets.mk
69 endif
71 include $(topsrcdir)/config/rules.mk
73 distclean::
74 cat unallmakefiles | $(XARGS) rm -f
75 $(RM) unallmakefiles $(DIST_GARBAGE)
77 ifeq ($(OS_ARCH),WINNT)
78 # we want to copy PDB files on Windows
79 MAKE_SYM_STORE_ARGS := -c --vcs-info
80 ifdef PDBSTR_PATH
81 MAKE_SYM_STORE_ARGS += -i
82 endif
83 DUMP_SYMS_BIN ?= $(topsrcdir)/toolkit/crashreporter/tools/win32/dump_syms_vc$(_MSC_VER).exe
84 # PDB files don't get moved to dist, so we need to scan the whole objdir
85 MAKE_SYM_STORE_PATH := .
86 endif
87 ifeq ($(OS_ARCH),Darwin)
88 # need to pass arch flags for universal builds
89 ifdef UNIVERSAL_BINARY
90 MAKE_SYM_STORE_ARGS := -c -a "i386 x86_64" --vcs-info
91 MAKE_SYM_STORE_PATH := $(DIST)/universal
92 else
93 MAKE_SYM_STORE_ARGS := -c -a $(OS_TEST) --vcs-info
94 MAKE_SYM_STORE_PATH := $(DIST)/bin
95 endif
96 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
97 endif
98 ifeq (,$(filter-out Linux SunOS,$(OS_ARCH)))
99 MAKE_SYM_STORE_ARGS := -c --vcs-info
100 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
101 MAKE_SYM_STORE_PATH := $(DIST)/bin
102 endif
104 SYM_STORE_SOURCE_DIRS := $(topsrcdir)
106 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
108 ifdef MOZ_SYMBOLS_EXTRA_BUILDID
109 EXTRA_BUILDID := -$(MOZ_SYMBOLS_EXTRA_BUILDID)
110 endif
112 SYMBOL_INDEX_NAME = \
113 $(MOZ_APP_NAME)-$(MOZ_APP_VERSION)-$(OS_TARGET)-$(BUILDID)-$(CPU_ARCH)$(EXTRA_BUILDID)-symbols.txt
115 buildsymbols:
116 ifdef MOZ_CRASHREPORTER
117 echo building symbol store
118 $(RM) -r $(DIST)/crashreporter-symbols
119 $(RM) "$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip"
120 $(NSINSTALL) -D $(DIST)/crashreporter-symbols
121 OBJCOPY="$(OBJCOPY)" \
122 $(PYTHON) $(topsrcdir)/toolkit/crashreporter/tools/symbolstore.py \
123 $(MAKE_SYM_STORE_ARGS) \
124 $(foreach dir,$(SYM_STORE_SOURCE_DIRS),-s $(dir)) \
125 $(DUMP_SYMS_BIN) \
126 $(DIST)/crashreporter-symbols \
127 $(MAKE_SYM_STORE_PATH) | grep -iv test > \
128 $(DIST)/crashreporter-symbols/$(SYMBOL_INDEX_NAME)
129 echo packing symbols
130 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
131 cd $(DIST)/crashreporter-symbols && \
132 zip -r9D "../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip" . -x "*test*" -x "*Test*"
133 cd $(DIST)/crashreporter-symbols && \
134 grep "sym" $(SYMBOL_INDEX_NAME) > $(SYMBOL_INDEX_NAME).tmp && \
135 mv $(SYMBOL_INDEX_NAME).tmp $(SYMBOL_INDEX_NAME)
136 cd $(DIST)/crashreporter-symbols && \
137 zip -r9D "../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" . -i "*.sym" -i "*.txt" -x "*test*" -x "*Test*"
138 endif # MOZ_CRASHREPORTER
140 uploadsymbols:
141 ifdef MOZ_CRASHREPORTER
142 $(SHELL) $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.sh $(SYMBOL_INDEX_NAME) "$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip"
143 endif
145 codesighs:
146 $(MAKE) -C $(MOZ_BUILD_APP)/installer codesighs
148 # defined in package-name.mk
149 export MOZ_SOURCE_STAMP
151 #XXX: this is a hack, since we don't want to clobber for MSVC
152 # PGO support, but we can't do this test in client.mk
153 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
154 # No point in clobbering if PGO has been explicitly disabled.
155 ifndef NO_PROFILE_GUIDED_OPTIMIZE
156 maybe_clobber_profiledbuild: clean
157 else
158 maybe_clobber_profiledbuild:
159 endif
160 else
161 maybe_clobber_profiledbuild:
162 $(RM) $(DIST)/bin/*.pgc
163 find $(DIST)/$(MOZ_APP_NAME) -name "*.pgc" -exec mv {} $(DIST)/bin \;
164 endif
166 .PHONY: maybe_clobber_profiledbuild
168 # Look for R_386_PC32 relocations in shared libs, these
169 # break x86_64 builds and SELinux users.
170 ifeq ($(OS_TARGET)_$(TARGET_XPCOM_ABI),Linux_x86-gcc3)
171 scheck::
172 @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
173 endif
175 js/src/Makefile: subsrcdir := js/src