1999-02-16 18:29:51 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2004-07-16 18:13:26 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-02-16 18:29:51 +00:00
|
|
|
#
|
2004-07-16 18:13:26 +00:00
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
1999-02-16 18:29:51 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-07-16 18:13:26 +00:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 03:43:54 +00:00
|
|
|
#
|
2004-07-16 18:13:26 +00:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1999-02-16 18:29:51 +00:00
|
|
|
#
|
2004-07-16 18:13:26 +00:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-02-16 18:29:51 +00:00
|
|
|
|
2007-08-31 04:23:04 +00:00
|
|
|
# allmakefiles.sh - List of all makefiles.
|
1999-02-17 18:25:39 +00:00
|
|
|
# Appends the list of makefiles to the variable, MAKEFILES.
|
1999-02-16 18:29:51 +00:00
|
|
|
# There is no need to rerun autoconf after adding makefiles.
|
|
|
|
# You only need to run configure.
|
|
|
|
|
1999-09-10 18:05:38 +00:00
|
|
|
MAKEFILES=""
|
|
|
|
|
1999-02-17 18:25:39 +00:00
|
|
|
# add_makefiles - Shell function to add makefiles to MAKEFILES
|
1999-02-16 18:29:51 +00:00
|
|
|
add_makefiles() {
|
2007-08-31 04:23:04 +00:00
|
|
|
MAKEFILES="$MAKEFILES $*"
|
1999-02-16 18:29:51 +00:00
|
|
|
}
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
if [ "$srcdir" = "" ]; then
|
2007-08-31 04:23:04 +00:00
|
|
|
srcdir=.
|
1999-03-06 20:38:24 +00:00
|
|
|
fi
|
|
|
|
|
2000-05-18 19:37:33 +00:00
|
|
|
#
|
2000-05-20 02:45:59 +00:00
|
|
|
# Common makefiles used by everyone
|
2000-05-18 19:37:33 +00:00
|
|
|
#
|
2000-05-20 02:45:59 +00:00
|
|
|
add_makefiles "
|
2000-05-18 19:37:33 +00:00
|
|
|
Makefile
|
|
|
|
build/Makefile
|
2009-06-27 23:12:56 +00:00
|
|
|
build/pgo/Makefile
|
|
|
|
build/pgo/blueprint/Makefile
|
|
|
|
build/pgo/js-input/Makefile
|
2000-05-18 19:37:33 +00:00
|
|
|
build/unix/Makefile
|
2009-06-27 23:12:56 +00:00
|
|
|
build/win32/Makefile
|
2009-10-16 17:34:27 +00:00
|
|
|
build/win32/crashinjectdll/Makefile
|
2000-05-18 19:37:33 +00:00
|
|
|
config/Makefile
|
|
|
|
config/autoconf.mk
|
|
|
|
config/mkdepend/Makefile
|
2009-06-27 23:12:56 +00:00
|
|
|
config/nspr/Makefile
|
2002-03-22 19:22:13 +00:00
|
|
|
config/doxygen.cfg
|
2008-06-13 14:41:43 +00:00
|
|
|
config/tests/src-simple/Makefile
|
2007-10-10 23:03:14 +00:00
|
|
|
probes/Makefile
|
1999-03-29 22:51:11 +00:00
|
|
|
extensions/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2009-06-27 23:12:56 +00:00
|
|
|
if [ "$WINCE" ]; then
|
|
|
|
add_makefiles "
|
|
|
|
build/wince/tools/Makefile
|
|
|
|
build/wince/shunt/Makefile
|
|
|
|
build/wince/shunt/include/windows.h
|
|
|
|
build/wince/shunt/include/ymath.h
|
|
|
|
build/wince/shunt/include/stdlib.h
|
|
|
|
build/wince/shunt/include/sys/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2010-03-29 09:26:19 +00:00
|
|
|
if [ "$MOZ_MEMORY" -a "$LIBXUL_SDK" = "" ]; then
|
2008-02-05 03:16:24 +00:00
|
|
|
add_makefiles "
|
|
|
|
memory/jemalloc/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
1999-10-08 01:32:44 +00:00
|
|
|
#
|
2007-08-31 04:23:04 +00:00
|
|
|
# Application-specific makefiles
|
1999-10-08 01:32:44 +00:00
|
|
|
#
|
2007-08-31 04:23:04 +00:00
|
|
|
if test -f "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"; then
|
|
|
|
. "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"
|
2005-12-15 17:50:47 +00:00
|
|
|
fi
|
|
|
|
|
2007-08-31 04:23:04 +00:00
|
|
|
#
|
|
|
|
# Extension makefiles
|
|
|
|
#
|
2000-05-24 22:54:58 +00:00
|
|
|
for extension in $MOZ_EXTENSIONS; do
|
2007-05-23 20:08:44 +00:00
|
|
|
if [ -f "${srcdir}/extensions/${extension}/makefiles.sh" ]; then
|
2007-05-24 17:45:55 +00:00
|
|
|
. "${srcdir}/extensions/${extension}/makefiles.sh"
|
2007-05-23 20:08:44 +00:00
|
|
|
fi
|
2000-05-20 02:45:59 +00:00
|
|
|
done
|
1999-11-09 23:30:32 +00:00
|
|
|
|
2007-08-31 04:23:04 +00:00
|
|
|
#
|
|
|
|
# Toolkit makefiles
|
|
|
|
#
|
|
|
|
if test -z "$LIBXUL_SDK"; then
|
|
|
|
. "${srcdir}/toolkit/toolkit-makefiles.sh"
|
2007-05-23 20:08:44 +00:00
|
|
|
fi
|
2010-06-22 00:07:13 +00:00
|
|
|
|
|
|
|
# Services makefiles
|
|
|
|
. "${srcdir}/services/makefiles.sh"
|