bug 715586: checksums.py should generate sha1 and md5 checksums. r=catlee,ted
[gecko.git] / allmakefiles.sh
blob628c72ef87186c6fab463a687c7b76ba654a1bdf
1 #! /bin/sh
3 # ***** BEGIN LICENSE BLOCK *****
4 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 # The contents of this file are subject to the Mozilla Public License Version
7 # 1.1 (the "License"); you may not use this file except in compliance with
8 # the License. You may obtain a copy of the License at
9 # http://www.mozilla.org/MPL/
11 # Software distributed under the License is distributed on an "AS IS" basis,
12 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 # for the specific language governing rights and limitations under the
14 # License.
16 # The Original Code is mozilla.org code.
18 # The Initial Developer of the Original Code is
19 # Netscape Communications Corporation.
20 # Portions created by the Initial Developer are Copyright (C) 1999
21 # the Initial Developer. All Rights Reserved.
23 # Contributor(s):
25 # Alternatively, the contents of this file may be used under the terms of
26 # either the GNU General Public License Version 2 or later (the "GPL"), or
27 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 # in which case the provisions of the GPL or the LGPL are applicable instead
29 # of those above. If you wish to allow use of your version of this file only
30 # under the terms of either the GPL or the LGPL, and not to allow others to
31 # use your version of this file under the terms of the MPL, indicate your
32 # decision by deleting the provisions above and replace them with the notice
33 # and other provisions required by the GPL or the LGPL. If you do not delete
34 # the provisions above, a recipient may use your version of this file under
35 # the terms of any one of the MPL, the GPL or the LGPL.
37 # ***** END LICENSE BLOCK *****
39 # allmakefiles.sh - List of all makefiles.
40 # Appends the list of makefiles to the variable, MAKEFILES.
41 # There is no need to rerun autoconf after adding makefiles.
42 # You only need to run configure.
44 # Turn on exit on error
45 set -o errexit
47 MAKEFILES=""
49 # add_makefiles - Shell function to add makefiles to MAKEFILES
50 add_makefiles() {
51 MAKEFILES="$MAKEFILES $*"
54 if [ "$srcdir" = "" ]; then
55 srcdir=.
58 # Common makefiles used by everyone
59 add_makefiles "
60 Makefile
61 build/Makefile
62 build/pgo/Makefile
63 build/pgo/blueprint/Makefile
64 build/pgo/js-input/Makefile
65 config/Makefile
66 config/autoconf.mk
67 config/nspr/Makefile
68 config/doxygen.cfg
69 config/expandlibs_config.py
70 config/tests/src-simple/Makefile
71 probes/Makefile
72 extensions/Makefile
75 if [ ! "$LIBXUL_SDK" ]; then
76 add_makefiles "
77 memory/mozalloc/Makefile
78 mozglue/Makefile
79 mozglue/build/Makefile
81 if [ "$MOZ_MEMORY" ]; then
82 add_makefiles "
83 memory/jemalloc/Makefile
86 if [ "$MOZ_WIDGET_TOOLKIT" = "android" ]; then
87 add_makefiles "
88 other-licenses/android/Makefile
89 other-licenses/skia-npapi/Makefile
90 mozglue/android/Makefile
93 if [ "$MOZ_LINKER" ]; then
94 add_makefiles "
95 mozglue/linker/Makefile
100 if [ "$OS_ARCH" = "WINNT" ]; then
101 add_makefiles "
102 build/win32/Makefile
103 build/win32/crashinjectdll/Makefile
107 if [ "$OS_ARCH" != "WINNT" -a "$OS_ARCH" != "OS2" ]; then
108 add_makefiles "
109 build/unix/Makefile
111 if [ "$USE_ELF_HACK" ]; then
112 add_makefiles "
113 build/unix/elfhack/Makefile
118 if [ "$COMPILER_DEPEND" = "" -a "$MOZ_NATIVE_MAKEDEPEND" = "" ]; then
119 add_makefiles "
120 config/mkdepend/Makefile
124 if [ "$ENABLE_TESTS" ]; then
125 add_makefiles "
126 build/autoconf/test/Makefile
128 if [ "$_MSC_VER" -a "$OS_TEST" != "x86_64" ]; then
129 add_makefiles "
130 build/win32/vmwarerecordinghelper/Makefile
133 if [ "$OS_ARCH" != "WINNT" -a "$OS_ARCH" != "OS2" ]; then
134 add_makefiles "
135 build/unix/test/Makefile
138 if [ "$MOZ_WIDGET_TOOLKIT" = "android" ]; then
139 add_makefiles "
140 build/mobile/sutagent/android/Makefile
141 build/mobile/sutagent/android/fencp/Makefile
142 build/mobile/sutagent/android/ffxcp/Makefile
143 build/mobile/sutagent/android/watcher/Makefile
148 # Application-specific makefiles
149 if [ -f "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh" ]; then
150 . "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"
153 # Extension makefiles
154 for extension in $MOZ_EXTENSIONS; do
155 if [ -f "${srcdir}/extensions/${extension}/makefiles.sh" ]; then
156 . "${srcdir}/extensions/${extension}/makefiles.sh"
158 done
160 # Toolkit makefiles
161 if [ ! "$LIBXUL_SDK" ]; then
162 . "${srcdir}/toolkit/toolkit-makefiles.sh"
165 # Services makefiles
166 . "${srcdir}/services/makefiles.sh"
168 # Turn off exit on error, since it breaks the rest of configure
169 set +o errexit