1999-02-16 21:29:51 +03:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2004-07-16 22:13:26 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-02-16 21:29:51 +03:00
|
|
|
#
|
2004-07-16 22:13:26 +04: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 21:29:51 +03:00
|
|
|
#
|
1999-11-06 06:43:54 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-07-16 22:13:26 +04: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 06:43:54 +03:00
|
|
|
#
|
2004-07-16 22:13:26 +04: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 21:29:51 +03:00
|
|
|
#
|
2004-07-16 22:13:26 +04:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-02-16 21:29:51 +03:00
|
|
|
|
|
|
|
# allmakefiles.sh - List of all makefiles.
|
1999-02-17 21:25:39 +03:00
|
|
|
# Appends the list of makefiles to the variable, MAKEFILES.
|
1999-02-16 21:29:51 +03:00
|
|
|
# There is no need to rerun autoconf after adding makefiles.
|
|
|
|
# You only need to run configure.
|
|
|
|
#
|
2000-05-20 06:45:59 +04:00
|
|
|
# Please keep the modules in this file in sync with those in
|
|
|
|
# mozilla/build/unix/modules.mk
|
|
|
|
#
|
1999-02-16 21:29:51 +03:00
|
|
|
|
1999-09-10 22:05:38 +04:00
|
|
|
MAKEFILES=""
|
|
|
|
|
1999-02-17 21:25:39 +03:00
|
|
|
# add_makefiles - Shell function to add makefiles to MAKEFILES
|
1999-02-16 21:29:51 +03:00
|
|
|
add_makefiles() {
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES="$MAKEFILES $*"
|
1999-02-16 21:29:51 +03:00
|
|
|
}
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
if [ "$srcdir" = "" ]; then
|
1999-03-06 23:38:24 +03:00
|
|
|
srcdir=.
|
|
|
|
fi
|
|
|
|
|
2000-05-18 23:37:33 +04:00
|
|
|
#
|
2000-05-20 06:45:59 +04:00
|
|
|
# Common makefiles used by everyone
|
2000-05-18 23:37:33 +04:00
|
|
|
#
|
2000-05-20 06:45:59 +04:00
|
|
|
add_makefiles "
|
2000-05-18 23:37:33 +04:00
|
|
|
Makefile
|
|
|
|
build/Makefile
|
|
|
|
build/unix/Makefile
|
|
|
|
config/Makefile
|
|
|
|
config/autoconf.mk
|
|
|
|
config/mkdepend/Makefile
|
2002-03-22 22:22:13 +03:00
|
|
|
config/doxygen.cfg
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
2000-05-18 23:37:33 +04:00
|
|
|
|
2002-10-01 04:16:51 +04:00
|
|
|
if [ "$MOZ_COMPOSER" ]; then
|
|
|
|
MAKEFILES_composer="
|
|
|
|
editor/composer/Makefile
|
|
|
|
editor/ui/Makefile
|
2005-08-04 23:07:19 +04:00
|
|
|
editor/ui/locales/Makefile
|
2002-10-01 04:16:51 +04:00
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_db="
|
1999-09-09 00:59:36 +04:00
|
|
|
db/Makefile
|
|
|
|
db/mdb/Makefile
|
|
|
|
db/mdb/public/Makefile
|
|
|
|
db/mork/Makefile
|
|
|
|
db/mork/build/Makefile
|
|
|
|
db/mork/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2004-10-09 04:10:14 +04:00
|
|
|
MAKEFILES_storage="
|
|
|
|
db/sqlite3/src/Makefile
|
2006-01-18 04:00:22 +03:00
|
|
|
db/morkreader/Makefile
|
2004-10-09 04:10:14 +04:00
|
|
|
storage/Makefile
|
|
|
|
storage/public/Makefile
|
|
|
|
storage/src/Makefile
|
|
|
|
storage/build/Makefile
|
|
|
|
storage/test/Makefile
|
|
|
|
"
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_dom="
|
1999-02-16 21:29:51 +03:00
|
|
|
dom/Makefile
|
|
|
|
dom/public/Makefile
|
|
|
|
dom/public/base/Makefile
|
|
|
|
dom/public/coreEvents/Makefile
|
1999-09-01 04:55:35 +04:00
|
|
|
dom/public/idl/Makefile
|
|
|
|
dom/public/idl/base/Makefile
|
2005-04-18 10:33:23 +04:00
|
|
|
dom/public/idl/canvas/Makefile
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
dom/public/idl/core/Makefile
|
1999-09-01 04:55:35 +04:00
|
|
|
dom/public/idl/css/Makefile
|
|
|
|
dom/public/idl/events/Makefile
|
|
|
|
dom/public/idl/html/Makefile
|
|
|
|
dom/public/idl/range/Makefile
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
dom/public/idl/stylesheets/Makefile
|
|
|
|
dom/public/idl/views/Makefile
|
|
|
|
dom/public/idl/xbl/Makefile
|
2002-03-14 15:18:04 +03:00
|
|
|
dom/public/idl/xpath/Makefile
|
2001-02-22 06:01:34 +03:00
|
|
|
dom/public/idl/xul/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
dom/src/Makefile
|
|
|
|
dom/src/base/Makefile
|
|
|
|
dom/src/events/Makefile
|
|
|
|
dom/src/jsurl/Makefile
|
2004-12-04 21:41:18 +03:00
|
|
|
dom/locales/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_editor="
|
1999-02-16 21:29:51 +03:00
|
|
|
editor/Makefile
|
|
|
|
editor/public/Makefile
|
1999-06-11 23:01:36 +04:00
|
|
|
editor/idl/Makefile
|
1999-05-20 00:26:51 +04:00
|
|
|
editor/txmgr/Makefile
|
1999-09-22 02:28:08 +04:00
|
|
|
editor/txmgr/idl/Makefile
|
1999-05-20 00:26:51 +04:00
|
|
|
editor/txmgr/public/Makefile
|
|
|
|
editor/txmgr/src/Makefile
|
|
|
|
editor/txmgr/tests/Makefile
|
|
|
|
editor/txtsvc/Makefile
|
|
|
|
editor/txtsvc/public/Makefile
|
|
|
|
editor/txtsvc/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_expat="
|
2004-05-04 15:46:11 +04:00
|
|
|
parser/expat/Makefile
|
|
|
|
parser/expat/lib/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_extensions="
|
1999-03-30 02:51:11 +04:00
|
|
|
extensions/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_gfx="
|
1999-02-16 21:29:51 +03:00
|
|
|
gfx/Makefile
|
1999-09-01 04:38:23 +04:00
|
|
|
gfx/idl/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
gfx/public/Makefile
|
|
|
|
gfx/src/Makefile
|
1999-06-30 08:20:46 +04:00
|
|
|
gfx/src/beos/Makefile
|
2004-09-07 21:55:27 +04:00
|
|
|
gfx/src/psshared/Makefile
|
1999-05-12 01:03:27 +04:00
|
|
|
gfx/src/photon/Makefile
|
2000-03-11 06:08:04 +03:00
|
|
|
gfx/src/mac/Makefile
|
2000-06-03 01:33:43 +04:00
|
|
|
gfx/src/os2/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
gfx/src/windows/Makefile
|
2005-08-20 10:21:16 +04:00
|
|
|
gfx/src/thebes/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
gfx/tests/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2005-04-19 21:19:47 +04:00
|
|
|
if [ "$MOZ_TREE_CAIRO" ] ; then
|
|
|
|
MAKEFILES_gfx="$MAKEFILES_gfx
|
|
|
|
gfx/cairo/Makefile
|
|
|
|
gfx/cairo/libpixman/src/Makefile
|
|
|
|
gfx/cairo/cairo/src/Makefile
|
|
|
|
gfx/cairo/cairo/src/cairo-features.h
|
2005-08-20 10:21:16 +04:00
|
|
|
gfx/cairo/glitz/src/Makefile
|
|
|
|
gfx/cairo/glitz/src/glx/Makefile
|
|
|
|
gfx/cairo/glitz/src/wgl/Makefile
|
2005-04-19 21:19:47 +04:00
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2007-07-24 07:53:25 +04:00
|
|
|
if [ ! "$MOZ_NATIVE_LCMS" ] ; then
|
2007-07-24 02:02:17 +04:00
|
|
|
MAKEFILES_gfx="$MAKEFILES_gfx
|
|
|
|
modules/lcms/Makefile
|
|
|
|
modules/lcms/include/Makefile
|
|
|
|
modules/lcms/src/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_htmlparser="
|
2004-05-04 15:46:11 +04:00
|
|
|
parser/htmlparser/Makefile
|
|
|
|
parser/htmlparser/robot/Makefile
|
|
|
|
parser/htmlparser/robot/test/Makefile
|
|
|
|
parser/htmlparser/public/Makefile
|
|
|
|
parser/htmlparser/src/Makefile
|
|
|
|
parser/htmlparser/tests/Makefile
|
|
|
|
parser/htmlparser/tests/grabpage/Makefile
|
|
|
|
parser/htmlparser/tests/logparse/Makefile
|
|
|
|
parser/htmlparser/tests/html/Makefile
|
|
|
|
parser/htmlparser/tests/outsinks/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_intl="
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/Makefile
|
1999-05-17 23:08:19 +04:00
|
|
|
intl/chardet/Makefile
|
|
|
|
intl/chardet/public/Makefile
|
|
|
|
intl/chardet/src/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/uconv/Makefile
|
2000-01-11 06:46:42 +03:00
|
|
|
intl/uconv/idl/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/uconv/public/Makefile
|
|
|
|
intl/uconv/src/Makefile
|
|
|
|
intl/uconv/tests/Makefile
|
|
|
|
intl/uconv/ucvja/Makefile
|
|
|
|
intl/uconv/ucvlatin/Makefile
|
1999-04-07 03:10:57 +04:00
|
|
|
intl/uconv/ucvcn/Makefile
|
1999-05-31 20:33:13 +04:00
|
|
|
intl/uconv/ucvtw/Makefile
|
|
|
|
intl/uconv/ucvtw2/Makefile
|
|
|
|
intl/uconv/ucvko/Makefile
|
2000-01-07 00:35:12 +03:00
|
|
|
intl/uconv/ucvibm/Makefile
|
2003-03-15 04:04:32 +03:00
|
|
|
intl/uconv/native/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/locale/Makefile
|
|
|
|
intl/locale/public/Makefile
|
1999-08-02 07:00:23 +04:00
|
|
|
intl/locale/idl/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/locale/src/Makefile
|
|
|
|
intl/locale/src/unix/Makefile
|
2000-06-03 01:33:43 +04:00
|
|
|
intl/locale/src/os2/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
intl/locale/src/windows/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/locale/tests/Makefile
|
1999-02-16 22:28:33 +03:00
|
|
|
intl/lwbrk/Makefile
|
|
|
|
intl/lwbrk/src/Makefile
|
|
|
|
intl/lwbrk/public/Makefile
|
|
|
|
intl/lwbrk/tests/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/unicharutil/Makefile
|
2006-06-07 20:25:40 +04:00
|
|
|
intl/unicharutil/util/Makefile
|
|
|
|
intl/unicharutil/util/internal/Makefile
|
1999-08-21 06:51:15 +04:00
|
|
|
intl/unicharutil/idl/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/unicharutil/src/Makefile
|
|
|
|
intl/unicharutil/public/Makefile
|
1999-08-21 06:51:15 +04:00
|
|
|
intl/unicharutil/tables/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
intl/unicharutil/tests/Makefile
|
|
|
|
intl/unicharutil/tools/Makefile
|
|
|
|
intl/strres/Makefile
|
|
|
|
intl/strres/public/Makefile
|
|
|
|
intl/strres/src/Makefile
|
|
|
|
intl/strres/tests/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2002-08-24 03:09:22 +04:00
|
|
|
if [ "$SUNCTL" ] ; then
|
|
|
|
MAKEFILES_intl="$MAKEFILES_intl
|
|
|
|
intl/ctl/Makefile
|
|
|
|
intl/ctl/public/Makefile
|
|
|
|
intl/ctl/src/Makefile
|
|
|
|
intl/ctl/src/pangoLite/Makefile
|
|
|
|
intl/ctl/src/thaiShaper/Makefile
|
2002-09-03 12:18:17 +04:00
|
|
|
intl/ctl/src/hindiShaper/Makefile
|
2002-08-24 03:09:22 +04:00
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2005-12-16 23:55:44 +03:00
|
|
|
if [ "$MOZ_UNIVERSALCHARDET" ] ; then
|
|
|
|
MAKEFILES_intl="$MAKEFILES_intl
|
|
|
|
extensions/universalchardet/Makefile
|
|
|
|
extensions/universalchardet/src/Makefile
|
|
|
|
extensions/universalchardet/src/base/Makefile
|
|
|
|
extensions/universalchardet/src/xpcom/Makefile
|
|
|
|
extensions/universalchardet/tests/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_js="
|
1999-02-16 21:29:51 +03:00
|
|
|
js/src/Makefile
|
|
|
|
js/src/fdlibm/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_liveconnect="
|
1999-02-16 21:29:51 +03:00
|
|
|
js/src/liveconnect/Makefile
|
|
|
|
js/src/liveconnect/classes/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpconnect="
|
1999-02-16 21:29:51 +03:00
|
|
|
js/src/xpconnect/Makefile
|
1999-03-23 23:49:58 +03:00
|
|
|
js/src/xpconnect/public/Makefile
|
1999-05-14 12:27:27 +04:00
|
|
|
js/src/xpconnect/idl/Makefile
|
1999-04-10 20:15:02 +04:00
|
|
|
js/src/xpconnect/shell/Makefile
|
1999-03-23 23:49:58 +03:00
|
|
|
js/src/xpconnect/src/Makefile
|
2000-01-11 06:46:42 +03:00
|
|
|
js/src/xpconnect/loader/Makefile
|
1999-03-23 23:49:58 +03:00
|
|
|
js/src/xpconnect/tests/Makefile
|
1999-04-10 20:10:34 +04:00
|
|
|
js/src/xpconnect/tests/components/Makefile
|
1999-12-18 23:29:29 +03:00
|
|
|
js/src/xpconnect/tests/idl/Makefile
|
1999-04-11 00:46:22 +04:00
|
|
|
js/src/xpconnect/shell/Makefile
|
2000-07-13 09:19:46 +04:00
|
|
|
js/src/xpconnect/tools/Makefile
|
|
|
|
js/src/xpconnect/tools/idl/Makefile
|
|
|
|
js/src/xpconnect/tools/idl/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2001-05-16 00:48:23 +04:00
|
|
|
MAKEFILES_jsdebugger="
|
|
|
|
js/jsd/Makefile
|
|
|
|
js/jsd/idl/Makefile
|
|
|
|
"
|
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
MAKEFILES_content="
|
|
|
|
content/Makefile
|
|
|
|
content/base/Makefile
|
|
|
|
content/base/public/Makefile
|
|
|
|
content/base/src/Makefile
|
2005-04-18 10:33:23 +04:00
|
|
|
content/canvas/Makefile
|
|
|
|
content/canvas/public/Makefile
|
|
|
|
content/canvas/src/Makefile
|
2001-02-20 00:50:04 +03:00
|
|
|
content/events/Makefile
|
|
|
|
content/events/public/Makefile
|
|
|
|
content/events/src/Makefile
|
|
|
|
content/html/Makefile
|
|
|
|
content/html/content/Makefile
|
|
|
|
content/html/content/public/Makefile
|
|
|
|
content/html/content/src/Makefile
|
|
|
|
content/html/document/Makefile
|
|
|
|
content/html/document/public/Makefile
|
|
|
|
content/html/document/src/Makefile
|
|
|
|
content/xml/Makefile
|
|
|
|
content/xml/content/Makefile
|
|
|
|
content/xml/content/src/Makefile
|
|
|
|
content/xml/document/Makefile
|
|
|
|
content/xml/document/public/Makefile
|
|
|
|
content/xml/document/src/Makefile
|
|
|
|
content/xul/Makefile
|
|
|
|
content/xul/content/Makefile
|
|
|
|
content/xul/content/src/Makefile
|
2001-02-22 06:01:34 +03:00
|
|
|
content/xul/document/Makefile
|
|
|
|
content/xul/document/public/Makefile
|
|
|
|
content/xul/document/src/Makefile
|
|
|
|
content/xul/templates/public/Makefile
|
|
|
|
content/xul/templates/src/Makefile
|
2001-02-20 00:50:04 +03:00
|
|
|
content/xbl/Makefile
|
|
|
|
content/xbl/public/Makefile
|
|
|
|
content/xbl/src/Makefile
|
|
|
|
content/xbl/builtin/Makefile
|
2005-11-03 00:04:05 +03:00
|
|
|
content/xslt/Makefile
|
|
|
|
content/xslt/public/Makefile
|
|
|
|
content/xslt/src/Makefile
|
|
|
|
content/xslt/src/base/Makefile
|
|
|
|
content/xslt/src/xml/Makefile
|
|
|
|
content/xslt/src/xpath/Makefile
|
|
|
|
content/xslt/src/xslt/Makefile
|
|
|
|
content/xslt/src/main/Makefile
|
2001-02-20 00:50:04 +03:00
|
|
|
"
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_layout="
|
1999-02-16 21:29:51 +03:00
|
|
|
layout/Makefile
|
|
|
|
layout/base/Makefile
|
|
|
|
layout/base/tests/Makefile
|
|
|
|
layout/build/Makefile
|
2004-12-08 22:41:48 +03:00
|
|
|
layout/forms/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
layout/html/tests/Makefile
|
2004-12-08 22:41:48 +03:00
|
|
|
layout/style/Makefile
|
|
|
|
layout/printing/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
layout/tools/Makefile
|
|
|
|
layout/xul/Makefile
|
|
|
|
layout/xul/base/Makefile
|
1999-08-20 06:33:21 +04:00
|
|
|
layout/xul/base/public/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
layout/xul/base/src/Makefile
|
2002-03-29 08:25:37 +03:00
|
|
|
layout/xul/base/src/tree/Makefile
|
|
|
|
layout/xul/base/src/tree/src/Makefile
|
|
|
|
layout/xul/base/src/tree/public/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libimg="
|
1999-02-16 21:29:51 +03:00
|
|
|
modules/libimg/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libjar="
|
1999-03-25 23:47:28 +03:00
|
|
|
modules/libjar/Makefile
|
2000-12-27 08:29:50 +03:00
|
|
|
modules/libjar/standalone/Makefile
|
2006-09-14 21:16:42 +04:00
|
|
|
modules/libjar/test/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libreg="
|
|
|
|
modules/libreg/Makefile
|
|
|
|
modules/libreg/include/Makefile
|
|
|
|
modules/libreg/src/Makefile
|
2003-03-15 04:04:32 +03:00
|
|
|
modules/libreg/standalone/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libpref="
|
1999-02-16 21:29:51 +03:00
|
|
|
modules/libpref/Makefile
|
|
|
|
modules/libpref/public/Makefile
|
|
|
|
modules/libpref/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libutil="
|
1999-02-16 21:29:51 +03:00
|
|
|
modules/libutil/Makefile
|
|
|
|
modules/libutil/public/Makefile
|
|
|
|
modules/libutil/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_oji="
|
1999-02-16 21:29:51 +03:00
|
|
|
modules/oji/Makefile
|
|
|
|
modules/oji/public/Makefile
|
|
|
|
modules/oji/src/Makefile
|
2005-07-29 05:40:32 +04:00
|
|
|
plugin/oji/JEP/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_plugin="
|
1999-02-16 21:29:51 +03:00
|
|
|
modules/plugin/Makefile
|
2001-08-10 11:35:54 +04:00
|
|
|
modules/plugin/base/src/Makefile
|
|
|
|
modules/plugin/base/public/Makefile
|
|
|
|
modules/plugin/samples/simple/Makefile
|
|
|
|
modules/plugin/samples/SanePlugin/Makefile
|
|
|
|
modules/plugin/samples/default/unix/Makefile
|
2002-09-29 06:33:16 +04:00
|
|
|
modules/plugin/tools/sdk/Makefile
|
|
|
|
modules/plugin/tools/sdk/samples/Makefile
|
|
|
|
modules/plugin/tools/sdk/samples/common/Makefile
|
|
|
|
modules/plugin/tools/sdk/samples/basic/windows/Makefile
|
|
|
|
modules/plugin/tools/sdk/samples/scriptable/windows/Makefile
|
|
|
|
modules/plugin/tools/sdk/samples/simple/Makefile
|
|
|
|
modules/plugin/tools/sdk/samples/winless/windows/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_netwerk="
|
1999-11-02 04:54:54 +03:00
|
|
|
netwerk/Makefile
|
|
|
|
netwerk/base/Makefile
|
|
|
|
netwerk/base/public/Makefile
|
|
|
|
netwerk/base/src/Makefile
|
|
|
|
netwerk/build/Makefile
|
1999-12-07 07:28:23 +03:00
|
|
|
netwerk/cache/Makefile
|
|
|
|
netwerk/cache/public/Makefile
|
2001-10-07 02:26:35 +04:00
|
|
|
netwerk/cache/src/Makefile
|
2003-10-11 03:08:01 +04:00
|
|
|
netwerk/cookie/Makefile
|
|
|
|
netwerk/cookie/public/Makefile
|
|
|
|
netwerk/cookie/src/Makefile
|
1999-11-02 04:54:54 +03:00
|
|
|
netwerk/dns/Makefile
|
|
|
|
netwerk/dns/public/Makefile
|
|
|
|
netwerk/dns/src/Makefile
|
|
|
|
netwerk/protocol/Makefile
|
|
|
|
netwerk/protocol/about/Makefile
|
|
|
|
netwerk/protocol/about/public/Makefile
|
|
|
|
netwerk/protocol/about/src/Makefile
|
|
|
|
netwerk/protocol/data/Makefile
|
|
|
|
netwerk/protocol/data/src/Makefile
|
|
|
|
netwerk/protocol/file/Makefile
|
|
|
|
netwerk/protocol/file/public/Makefile
|
|
|
|
netwerk/protocol/file/src/Makefile
|
|
|
|
netwerk/protocol/ftp/Makefile
|
|
|
|
netwerk/protocol/ftp/public/Makefile
|
|
|
|
netwerk/protocol/ftp/src/Makefile
|
2001-03-14 05:51:01 +03:00
|
|
|
netwerk/protocol/gopher/Makefile
|
|
|
|
netwerk/protocol/gopher/src/Makefile
|
1999-11-02 04:54:54 +03:00
|
|
|
netwerk/protocol/http/Makefile
|
|
|
|
netwerk/protocol/http/public/Makefile
|
|
|
|
netwerk/protocol/http/src/Makefile
|
2000-02-03 10:51:21 +03:00
|
|
|
netwerk/protocol/res/Makefile
|
1999-11-29 13:10:21 +03:00
|
|
|
netwerk/protocol/res/public/Makefile
|
|
|
|
netwerk/protocol/res/src/Makefile
|
1999-11-02 04:54:54 +03:00
|
|
|
netwerk/mime/Makefile
|
|
|
|
netwerk/mime/public/Makefile
|
|
|
|
netwerk/mime/src/Makefile
|
|
|
|
netwerk/socket/Makefile
|
|
|
|
netwerk/socket/base/Makefile
|
|
|
|
netwerk/streamconv/Makefile
|
|
|
|
netwerk/streamconv/converters/Makefile
|
|
|
|
netwerk/streamconv/public/Makefile
|
|
|
|
netwerk/streamconv/src/Makefile
|
|
|
|
netwerk/streamconv/test/Makefile
|
|
|
|
netwerk/test/Makefile
|
|
|
|
netwerk/testserver/Makefile
|
2001-01-16 02:48:51 +03:00
|
|
|
netwerk/resources/Makefile
|
2004-12-04 21:41:18 +03:00
|
|
|
netwerk/locales/Makefile
|
2006-05-02 22:08:55 +04:00
|
|
|
netwerk/system/Makefile
|
|
|
|
netwerk/system/win32/Makefile
|
2000-12-27 08:29:50 +03:00
|
|
|
uriloader/exthandler/Makefile
|
|
|
|
intl/strres/public/Makefile
|
|
|
|
intl/locale/idl/Makefile
|
|
|
|
$MAKEFILES_js
|
|
|
|
modules/libpref/public/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2005-12-21 21:37:02 +03:00
|
|
|
if [ "$MOZ_AUTH_EXTENSION" ]; then
|
|
|
|
MAKEFILES_netwerk="$MAKEFILES_netwerk
|
|
|
|
extensions/auth/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_uriloader="
|
1999-11-18 09:05:16 +03:00
|
|
|
uriloader/Makefile
|
|
|
|
uriloader/base/Makefile
|
2000-06-21 05:16:32 +04:00
|
|
|
uriloader/exthandler/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_profile="
|
1999-04-16 00:21:48 +04:00
|
|
|
profile/Makefile
|
|
|
|
profile/public/Makefile
|
2002-11-09 22:38:43 +03:00
|
|
|
profile/dirserviceprovider/Makefile
|
|
|
|
profile/dirserviceprovider/public/Makefile
|
|
|
|
profile/dirserviceprovider/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_rdf="
|
1999-02-16 21:29:51 +03:00
|
|
|
rdf/Makefile
|
|
|
|
rdf/base/Makefile
|
1999-03-03 06:30:17 +03:00
|
|
|
rdf/base/idl/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
rdf/base/public/Makefile
|
|
|
|
rdf/base/src/Makefile
|
1999-02-24 12:54:36 +03:00
|
|
|
rdf/util/Makefile
|
|
|
|
rdf/util/public/Makefile
|
|
|
|
rdf/util/src/Makefile
|
2007-06-19 09:02:49 +04:00
|
|
|
rdf/util/src/internal/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
rdf/build/Makefile
|
|
|
|
rdf/datasource/Makefile
|
|
|
|
rdf/datasource/public/Makefile
|
|
|
|
rdf/datasource/src/Makefile
|
|
|
|
rdf/tests/Makefile
|
1999-04-03 00:19:34 +04:00
|
|
|
rdf/tests/rdfcat/Makefile
|
1999-05-05 07:19:16 +04:00
|
|
|
rdf/tests/rdfpoll/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_sun_java="
|
1999-02-16 21:29:51 +03:00
|
|
|
sun-java/Makefile
|
|
|
|
sun-java/stubs/Makefile
|
|
|
|
sun-java/stubs/include/Makefile
|
|
|
|
sun-java/stubs/jri/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_caps="
|
1999-02-16 21:29:51 +03:00
|
|
|
caps/Makefile
|
1999-07-16 03:23:16 +04:00
|
|
|
caps/idl/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
caps/include/Makefile
|
|
|
|
caps/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2005-06-08 20:48:44 +04:00
|
|
|
MAKEFILES_chrome="
|
|
|
|
chrome/Makefile
|
|
|
|
chrome/public/Makefile
|
|
|
|
chrome/src/Makefile
|
|
|
|
embedding/minimo/chromelite/Makefile
|
|
|
|
rdf/chrome/Makefile
|
|
|
|
rdf/chrome/public/Makefile
|
|
|
|
rdf/chrome/build/Makefile
|
|
|
|
rdf/chrome/src/Makefile
|
|
|
|
rdf/chrome/tools/Makefile
|
|
|
|
rdf/chrome/tools/chromereg/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_view="
|
1999-02-16 21:29:51 +03:00
|
|
|
view/Makefile
|
|
|
|
view/public/Makefile
|
|
|
|
view/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_docshell="
|
1999-11-30 01:58:57 +03:00
|
|
|
docshell/Makefile
|
|
|
|
docshell/base/Makefile
|
2005-08-18 20:35:41 +04:00
|
|
|
docshell/shistory/Makefile
|
|
|
|
docshell/shistory/public/Makefile
|
|
|
|
docshell/shistory/src/Makefile
|
1999-11-30 01:58:57 +03:00
|
|
|
docshell/build/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_webshell="
|
1999-02-16 21:29:51 +03:00
|
|
|
webshell/Makefile
|
|
|
|
webshell/public/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_widget="
|
1999-02-16 21:29:51 +03:00
|
|
|
widget/Makefile
|
|
|
|
widget/public/Makefile
|
|
|
|
widget/src/Makefile
|
1999-06-30 08:20:46 +04:00
|
|
|
widget/src/beos/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
widget/src/build/Makefile
|
2000-04-23 00:45:12 +04:00
|
|
|
widget/src/gtkxtbin/Makefile
|
1999-05-12 01:03:27 +04:00
|
|
|
widget/src/photon/Makefile
|
2002-01-26 01:01:41 +03:00
|
|
|
widget/src/cocoa/Makefile
|
2000-06-03 01:33:43 +04:00
|
|
|
widget/src/os2/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
widget/src/windows/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
widget/src/xpwidgets/Makefile
|
1999-08-17 20:09:40 +04:00
|
|
|
widget/src/support/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpcom="
|
2003-08-15 03:50:21 +04:00
|
|
|
xpcom/string/Makefile
|
|
|
|
xpcom/string/public/Makefile
|
|
|
|
xpcom/string/src/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
xpcom/Makefile
|
1999-05-26 05:38:36 +04:00
|
|
|
xpcom/base/Makefile
|
|
|
|
xpcom/build/Makefile
|
|
|
|
xpcom/components/Makefile
|
|
|
|
xpcom/ds/Makefile
|
2001-11-12 01:46:29 +03:00
|
|
|
xpcom/glue/Makefile
|
2002-03-22 02:43:21 +03:00
|
|
|
xpcom/glue/standalone/Makefile
|
1999-05-26 05:38:36 +04:00
|
|
|
xpcom/io/Makefile
|
|
|
|
xpcom/typelib/Makefile
|
|
|
|
xpcom/reflect/Makefile
|
|
|
|
xpcom/typelib/xpt/Makefile
|
|
|
|
xpcom/typelib/xpt/public/Makefile
|
|
|
|
xpcom/typelib/xpt/src/Makefile
|
|
|
|
xpcom/typelib/xpt/tests/Makefile
|
|
|
|
xpcom/typelib/xpt/tools/Makefile
|
|
|
|
xpcom/typelib/xpidl/Makefile
|
|
|
|
xpcom/reflect/xptcall/Makefile
|
|
|
|
xpcom/reflect/xptcall/public/Makefile
|
|
|
|
xpcom/reflect/xptcall/src/Makefile
|
|
|
|
xpcom/reflect/xptcall/src/md/Makefile
|
2000-06-03 01:33:43 +04:00
|
|
|
xpcom/reflect/xptcall/src/md/os2/Makefile
|
1999-05-26 05:38:36 +04:00
|
|
|
xpcom/reflect/xptcall/src/md/test/Makefile
|
|
|
|
xpcom/reflect/xptcall/src/md/unix/Makefile
|
2001-12-09 10:02:42 +03:00
|
|
|
xpcom/reflect/xptcall/src/md/win32/Makefile
|
1999-05-26 05:38:36 +04:00
|
|
|
xpcom/reflect/xptcall/tests/Makefile
|
|
|
|
xpcom/reflect/xptinfo/Makefile
|
|
|
|
xpcom/reflect/xptinfo/public/Makefile
|
|
|
|
xpcom/reflect/xptinfo/src/Makefile
|
|
|
|
xpcom/reflect/xptinfo/tests/Makefile
|
|
|
|
xpcom/proxy/Makefile
|
|
|
|
xpcom/proxy/public/Makefile
|
|
|
|
xpcom/proxy/src/Makefile
|
|
|
|
xpcom/proxy/tests/Makefile
|
1999-05-13 03:54:34 +04:00
|
|
|
xpcom/sample/Makefile
|
1999-05-26 05:38:36 +04:00
|
|
|
xpcom/threads/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
xpcom/tools/Makefile
|
1999-04-05 08:54:10 +04:00
|
|
|
xpcom/tools/registry/Makefile
|
2004-12-09 22:28:35 +03:00
|
|
|
xpcom/stub/Makefile
|
2001-12-09 10:02:42 +03:00
|
|
|
xpcom/windbgdlg/Makefile
|
2006-09-28 00:17:56 +04:00
|
|
|
xpcom/system/Makefile
|
2003-11-03 17:56:14 +03:00
|
|
|
$MAKEFILES_libreg
|
2000-12-27 08:29:50 +03:00
|
|
|
$MAKEFILES_libjar
|
|
|
|
intl/unicharutil/public/Makefile
|
|
|
|
intl/uconv/public/Makefile
|
2001-10-24 04:12:06 +04:00
|
|
|
netwerk/base/public/Makefile
|
2001-12-09 10:02:42 +03:00
|
|
|
netwerk/build/Makefile
|
2000-12-27 08:29:50 +03:00
|
|
|
"
|
2003-08-15 03:50:21 +04:00
|
|
|
MAKEFILES_xpcom_obsolete="
|
|
|
|
xpcom/obsolete/Makefile
|
|
|
|
xpcom/obsolete/component/Makefile
|
|
|
|
"
|
2000-12-27 08:29:50 +03:00
|
|
|
|
|
|
|
MAKEFILES_xpcom_tests="
|
|
|
|
xpcom/tests/Makefile
|
|
|
|
xpcom/tests/dynamic/Makefile
|
|
|
|
xpcom/tests/services/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
xpcom/tests/windows/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
2001-02-22 12:24:57 +03:00
|
|
|
MAKEFILES_string="$MAKEFILES_xpcom"
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_xpinstall="
|
1999-03-25 23:47:28 +03:00
|
|
|
xpinstall/Makefile
|
|
|
|
xpinstall/public/Makefile
|
1999-06-23 10:22:53 +04:00
|
|
|
xpinstall/res/Makefile
|
1999-03-25 23:47:28 +03:00
|
|
|
xpinstall/src/Makefile
|
2000-01-11 06:46:42 +03:00
|
|
|
xpinstall/stub/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpfe="
|
2005-04-04 23:08:55 +04:00
|
|
|
widget/src/xremoteclient/Makefile
|
|
|
|
toolkit/components/Makefile
|
|
|
|
toolkit/components/remote/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
xpfe/Makefile
|
|
|
|
xpfe/browser/Makefile
|
|
|
|
xpfe/browser/public/Makefile
|
|
|
|
xpfe/browser/src/Makefile
|
1999-04-22 06:45:24 +04:00
|
|
|
xpfe/components/Makefile
|
1999-06-11 10:16:22 +04:00
|
|
|
xpfe/components/bookmarks/Makefile
|
|
|
|
xpfe/components/bookmarks/public/Makefile
|
|
|
|
xpfe/components/bookmarks/src/Makefile
|
1999-08-23 08:20:45 +04:00
|
|
|
xpfe/components/directory/Makefile
|
2002-03-18 00:41:01 +03:00
|
|
|
xpfe/components/download-manager/Makefile
|
|
|
|
xpfe/components/download-manager/src/Makefile
|
|
|
|
xpfe/components/download-manager/public/Makefile
|
2005-06-08 20:48:44 +04:00
|
|
|
xpfe/components/download-manager/resources/Makefile
|
|
|
|
xpfe/components/extensions/Makefile
|
|
|
|
xpfe/components/extensions/src/Makefile
|
|
|
|
xpfe/components/extensions/public/Makefile
|
1999-04-22 09:15:27 +04:00
|
|
|
xpfe/components/find/Makefile
|
1999-04-22 06:45:24 +04:00
|
|
|
xpfe/components/find/public/Makefile
|
|
|
|
xpfe/components/find/src/Makefile
|
2000-03-22 13:31:44 +03:00
|
|
|
xpfe/components/filepicker/Makefile
|
2001-11-03 05:10:10 +03:00
|
|
|
xpfe/components/filepicker/public/Makefile
|
|
|
|
xpfe/components/filepicker/src/Makefile
|
1999-05-18 07:40:25 +04:00
|
|
|
xpfe/components/history/Makefile
|
|
|
|
xpfe/components/history/src/Makefile
|
|
|
|
xpfe/components/history/public/Makefile
|
2005-06-08 20:48:44 +04:00
|
|
|
xpfe/components/intl/Makefile
|
1999-06-07 23:22:35 +04:00
|
|
|
xpfe/components/related/Makefile
|
|
|
|
xpfe/components/related/src/Makefile
|
|
|
|
xpfe/components/related/public/Makefile
|
1999-08-19 23:57:10 +04:00
|
|
|
xpfe/components/search/Makefile
|
1999-09-15 15:23:43 +04:00
|
|
|
xpfe/components/search/public/Makefile
|
|
|
|
xpfe/components/search/src/Makefile
|
1999-08-04 02:35:39 +04:00
|
|
|
xpfe/components/sidebar/Makefile
|
1999-11-30 03:49:09 +03:00
|
|
|
xpfe/components/sidebar/src/Makefile
|
2004-10-29 23:28:38 +04:00
|
|
|
xpfe/components/startup/Makefile
|
|
|
|
xpfe/components/startup/public/Makefile
|
|
|
|
xpfe/components/startup/src/Makefile
|
2000-04-13 08:49:50 +04:00
|
|
|
xpfe/components/autocomplete/Makefile
|
|
|
|
xpfe/components/autocomplete/public/Makefile
|
|
|
|
xpfe/components/autocomplete/src/Makefile
|
2005-06-08 20:48:44 +04:00
|
|
|
xpfe/components/updates/Makefile
|
|
|
|
xpfe/components/updates/src/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
xpfe/components/winhooks/Makefile
|
2005-06-08 20:48:44 +04:00
|
|
|
xpfe/components/windowds/Makefile
|
2002-03-23 01:06:38 +03:00
|
|
|
xpfe/components/alerts/Makefile
|
|
|
|
xpfe/components/alerts/public/Makefile
|
|
|
|
xpfe/components/alerts/src/Makefile
|
2000-04-14 06:47:54 +04:00
|
|
|
xpfe/components/console/Makefile
|
2002-03-02 02:51:21 +03:00
|
|
|
xpfe/components/resetPref/Makefile
|
2001-01-16 02:48:51 +03:00
|
|
|
xpfe/components/build/Makefile
|
2003-07-16 04:33:50 +04:00
|
|
|
xpfe/components/xremote/Makefile
|
|
|
|
xpfe/components/xremote/public/Makefile
|
|
|
|
xpfe/components/xremote/src/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
xpfe/appshell/Makefile
|
|
|
|
xpfe/appshell/src/Makefile
|
|
|
|
xpfe/appshell/public/Makefile
|
2003-07-16 04:33:50 +04:00
|
|
|
xpfe/bootstrap/appleevents/Makefile
|
1999-02-16 21:29:51 +03:00
|
|
|
xpfe/browser/Makefile
|
|
|
|
xpfe/browser/src/Makefile
|
1999-07-14 04:48:10 +04:00
|
|
|
xpfe/global/Makefile
|
2003-02-22 08:27:42 +03:00
|
|
|
xpfe/global/buildconfig.html
|
1999-07-14 04:48:10 +04:00
|
|
|
xpfe/global/resources/Makefile
|
1999-07-20 01:42:29 +04:00
|
|
|
xpfe/global/resources/content/Makefile
|
2000-06-03 01:33:43 +04:00
|
|
|
xpfe/global/resources/content/os2/Makefile
|
1999-09-14 06:13:50 +04:00
|
|
|
xpfe/global/resources/content/unix/Makefile
|
1999-07-20 23:17:11 +04:00
|
|
|
xpfe/global/resources/locale/Makefile
|
2000-02-15 08:18:51 +03:00
|
|
|
xpfe/global/resources/locale/en-US/Makefile
|
2001-03-20 02:10:12 +03:00
|
|
|
xpfe/global/resources/locale/en-US/mac/Makefile
|
2000-06-03 01:33:43 +04:00
|
|
|
xpfe/global/resources/locale/en-US/os2/Makefile
|
2000-02-15 08:18:51 +03:00
|
|
|
xpfe/global/resources/locale/en-US/unix/Makefile
|
2001-03-20 02:10:12 +03:00
|
|
|
xpfe/global/resources/locale/en-US/win/Makefile
|
2000-04-21 11:15:14 +04:00
|
|
|
xpfe/communicator/Makefile
|
2006-07-31 22:11:38 +04:00
|
|
|
extensions/spellcheck/Makefile
|
2007-08-06 07:32:58 +04:00
|
|
|
extensions/spellcheck/hunspell/Makefile
|
2006-07-31 22:11:38 +04:00
|
|
|
extensions/spellcheck/idl/Makefile
|
|
|
|
extensions/spellcheck/locales/Makefile
|
|
|
|
extensions/spellcheck/src/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
2000-04-21 11:15:14 +04:00
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_embedding="
|
2000-02-01 11:38:48 +03:00
|
|
|
embedding/Makefile
|
2001-01-16 02:48:51 +03:00
|
|
|
embedding/base/Makefile
|
2000-02-01 11:38:48 +03:00
|
|
|
embedding/browser/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
embedding/browser/activex/src/Makefile
|
|
|
|
embedding/browser/activex/src/control/Makefile
|
|
|
|
embedding/browser/activex/src/control_kicker/Makefile
|
2000-02-01 11:38:48 +03:00
|
|
|
embedding/browser/build/Makefile
|
2001-01-16 02:48:51 +03:00
|
|
|
embedding/browser/chrome/Makefile
|
2000-02-01 11:38:48 +03:00
|
|
|
embedding/browser/webBrowser/Makefile
|
2000-03-31 07:58:02 +04:00
|
|
|
embedding/browser/gtk/Makefile
|
|
|
|
embedding/browser/gtk/src/Makefile
|
|
|
|
embedding/browser/gtk/tests/Makefile
|
2000-07-12 17:56:39 +04:00
|
|
|
embedding/browser/photon/Makefile
|
|
|
|
embedding/browser/photon/src/Makefile
|
|
|
|
embedding/browser/photon/tests/Makefile
|
2003-04-05 01:24:56 +04:00
|
|
|
embedding/browser/cocoa/Makefile
|
2001-02-07 06:09:15 +03:00
|
|
|
embedding/components/Makefile
|
|
|
|
embedding/components/build/Makefile
|
|
|
|
embedding/components/windowwatcher/Makefile
|
|
|
|
embedding/components/windowwatcher/public/Makefile
|
|
|
|
embedding/components/windowwatcher/src/Makefile
|
2001-05-04 10:35:43 +04:00
|
|
|
embedding/components/ui/Makefile
|
|
|
|
embedding/components/ui/helperAppDlg/Makefile
|
2002-02-20 10:50:02 +03:00
|
|
|
embedding/components/ui/progressDlg/Makefile
|
2000-07-20 05:12:25 +04:00
|
|
|
embedding/config/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
embedding/tests/Makefile
|
2003-04-05 01:24:56 +04:00
|
|
|
embedding/tests/cocoaEmbed/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
embedding/tests/winEmbed/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
2000-02-01 11:38:48 +03:00
|
|
|
|
2003-07-23 08:58:59 +04:00
|
|
|
MAKEFILES_minimo="
|
2005-08-05 04:05:29 +04:00
|
|
|
minimo/Makefile
|
|
|
|
minimo/base/Makefile
|
2005-10-18 22:10:16 +04:00
|
|
|
minimo/base/wince/Makefile
|
2005-08-05 04:05:29 +04:00
|
|
|
minimo/components/Makefile
|
|
|
|
minimo/components/phone/Makefile
|
|
|
|
minimo/components/softkb/Makefile
|
|
|
|
minimo/components/ssr/Makefile
|
|
|
|
minimo/customization/Makefile
|
|
|
|
minimo/chrome/Makefile
|
2003-07-23 08:58:59 +04:00
|
|
|
"
|
|
|
|
|
2001-03-05 01:55:18 +03:00
|
|
|
MAKEFILES_psm2="
|
|
|
|
security/manager/Makefile
|
2001-11-30 02:36:34 +03:00
|
|
|
security/manager/boot/Makefile
|
|
|
|
security/manager/boot/src/Makefile
|
|
|
|
security/manager/boot/public/Makefile
|
2001-03-05 01:55:18 +03:00
|
|
|
security/manager/ssl/Makefile
|
|
|
|
security/manager/ssl/src/Makefile
|
|
|
|
security/manager/ssl/resources/Makefile
|
|
|
|
security/manager/ssl/public/Makefile
|
|
|
|
security/manager/pki/Makefile
|
|
|
|
security/manager/pki/resources/Makefile
|
|
|
|
security/manager/pki/src/Makefile
|
2001-03-10 05:53:29 +03:00
|
|
|
security/manager/pki/public/Makefile
|
2005-07-28 23:48:12 +04:00
|
|
|
security/manager/locales/Makefile
|
2001-03-05 01:55:18 +03:00
|
|
|
netwerk/protocol/http/public/Makefile
|
|
|
|
netwerk/build/Makefile
|
|
|
|
netwerk/base/public/Makefile
|
|
|
|
netwerk/socket/base/Makefile
|
|
|
|
uriloader/base/Makefile
|
|
|
|
intl/locale/idl/Makefile
|
|
|
|
intl/strres/public/Makefile
|
|
|
|
dom/public/Makefile
|
|
|
|
dom/public/base/Makefile
|
|
|
|
rdf/base/idl/Makefile
|
|
|
|
xpfe/appshell/public/Makefile
|
|
|
|
caps/idl/Makefile
|
|
|
|
gfx/public/Makefile
|
|
|
|
gfx/idl/Makefile
|
|
|
|
widget/public/Makefile
|
|
|
|
modules/libpref/public/Makefile
|
|
|
|
content/base/public/Makefile
|
|
|
|
intl/locale/public/Makefile
|
|
|
|
"
|
|
|
|
|
2004-09-09 23:10:39 +04:00
|
|
|
MAKEFILES_xulrunner="
|
|
|
|
xulrunner/Makefile
|
|
|
|
xulrunner/app/Makefile
|
|
|
|
xulrunner/app/profile/Makefile
|
|
|
|
xulrunner/app/profile/chrome/Makefile
|
|
|
|
xulrunner/app/profile/extensions/Makefile
|
2005-04-08 08:14:27 +04:00
|
|
|
xulrunner/installer/Makefile
|
2006-08-19 01:03:38 +04:00
|
|
|
xulrunner/installer/mac/Makefile
|
2004-09-09 23:10:39 +04:00
|
|
|
"
|
|
|
|
|
2003-04-17 10:14:23 +04:00
|
|
|
MAKEFILES_xulapp="
|
2002-08-07 10:37:13 +04:00
|
|
|
toolkit/Makefile
|
2004-12-07 01:39:54 +03:00
|
|
|
toolkit/library/Makefile
|
2007-08-08 19:19:57 +04:00
|
|
|
toolkit/crashreporter/Makefile
|
|
|
|
toolkit/crashreporter/client/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/client/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/client/mac/handler/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/client/windows/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/client/windows/handler/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/client/windows/sender/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/common/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/common/mac/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/common/windows/Makefile
|
|
|
|
toolkit/crashreporter/google-breakpad/src/tools/mac/dump_syms/Makefile
|
2003-11-15 10:43:50 +03:00
|
|
|
toolkit/content/Makefile
|
2003-08-11 18:51:44 +04:00
|
|
|
toolkit/content/buildconfig.html
|
2003-11-15 10:43:50 +03:00
|
|
|
toolkit/obsolete/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/components/alerts/Makefile
|
|
|
|
toolkit/components/alerts/public/Makefile
|
|
|
|
toolkit/components/alerts/src/Makefile
|
2002-09-29 01:28:40 +04:00
|
|
|
toolkit/components/autocomplete/Makefile
|
|
|
|
toolkit/components/autocomplete/public/Makefile
|
|
|
|
toolkit/components/autocomplete/src/Makefile
|
2003-07-20 00:26:12 +04:00
|
|
|
toolkit/components/Makefile
|
2002-09-29 01:28:40 +04:00
|
|
|
toolkit/components/build/Makefile
|
2005-01-17 21:50:18 +03:00
|
|
|
toolkit/components/commandlines/Makefile
|
|
|
|
toolkit/components/commandlines/public/Makefile
|
|
|
|
toolkit/components/commandlines/src/Makefile
|
2003-07-20 00:26:12 +04:00
|
|
|
toolkit/components/console/Makefile
|
2005-03-10 21:36:07 +03:00
|
|
|
toolkit/components/cookie/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/components/downloads/public/Makefile
|
|
|
|
toolkit/components/downloads/Makefile
|
|
|
|
toolkit/components/downloads/src/Makefile
|
2003-07-20 00:26:12 +04:00
|
|
|
toolkit/components/filepicker/Makefile
|
2006-09-28 00:17:56 +04:00
|
|
|
toolkit/system/gnome/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/components/help/Makefile
|
2003-07-20 00:26:12 +04:00
|
|
|
toolkit/components/history/Makefile
|
|
|
|
toolkit/components/history/public/Makefile
|
|
|
|
toolkit/components/history/src/Makefile
|
2003-07-31 09:05:03 +04:00
|
|
|
toolkit/components/passwordmgr/Makefile
|
2007-05-16 14:02:45 +04:00
|
|
|
toolkit/components/passwordmgr/public/Makefile
|
|
|
|
toolkit/components/passwordmgr/src/Makefile
|
2007-05-16 01:20:30 +04:00
|
|
|
toolkit/components/passwordmgr/content/Makefile
|
2007-04-23 03:56:06 +04:00
|
|
|
toolkit/components/passwordmgr/test/Makefile
|
2006-07-18 23:41:12 +04:00
|
|
|
toolkit/components/places/Makefile
|
|
|
|
toolkit/components/places/public/Makefile
|
|
|
|
toolkit/components/places/src/Makefile
|
2003-08-16 15:22:16 +04:00
|
|
|
toolkit/components/printing/Makefile
|
2002-09-29 01:28:40 +04:00
|
|
|
toolkit/components/satchel/Makefile
|
|
|
|
toolkit/components/satchel/public/Makefile
|
|
|
|
toolkit/components/satchel/src/Makefile
|
2004-10-29 23:28:38 +04:00
|
|
|
toolkit/components/startup/Makefile
|
|
|
|
toolkit/components/startup/public/Makefile
|
|
|
|
toolkit/components/startup/src/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/components/typeaheadfind/Makefile
|
|
|
|
toolkit/components/typeaheadfind/public/Makefile
|
|
|
|
toolkit/components/typeaheadfind/src/Makefile
|
2003-08-16 15:22:16 +04:00
|
|
|
toolkit/components/viewconfig/Makefile
|
2003-07-20 00:26:12 +04:00
|
|
|
toolkit/components/viewsource/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/locales/Makefile
|
2003-11-08 01:44:35 +03:00
|
|
|
toolkit/mozapps/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/mozapps/downloads/content/Makefile
|
2003-11-08 01:44:35 +03:00
|
|
|
toolkit/mozapps/downloads/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/mozapps/downloads/src/Makefile
|
|
|
|
toolkit/mozapps/extensions/Makefile
|
|
|
|
toolkit/mozapps/extensions/public/Makefile
|
|
|
|
toolkit/mozapps/extensions/src/Makefile
|
|
|
|
toolkit/mozapps/update/Makefile
|
|
|
|
toolkit/mozapps/update/public/Makefile
|
|
|
|
toolkit/mozapps/update/src/Makefile
|
|
|
|
toolkit/mozapps/xpinstall/Makefile
|
|
|
|
toolkit/profile/Makefile
|
|
|
|
toolkit/profile/public/Makefile
|
|
|
|
toolkit/profile/skin/Makefile
|
|
|
|
toolkit/profile/src/Makefile
|
|
|
|
toolkit/themes/Makefile
|
|
|
|
toolkit/themes/gnomestripe/global/Makefile
|
|
|
|
toolkit/themes/gnomestripe/Makefile
|
2006-03-14 20:24:57 +03:00
|
|
|
toolkit/themes/pmstripe/global/Makefile
|
|
|
|
toolkit/themes/pmstripe/Makefile
|
2004-12-02 09:42:04 +03:00
|
|
|
toolkit/themes/pinstripe/communicator/Makefile
|
|
|
|
toolkit/themes/pinstripe/Makefile
|
|
|
|
toolkit/themes/pinstripe/global/Makefile
|
|
|
|
toolkit/themes/pinstripe/help/Makefile
|
|
|
|
toolkit/themes/pinstripe/mozapps/Makefile
|
|
|
|
toolkit/themes/winstripe/communicator/Makefile
|
|
|
|
toolkit/themes/winstripe/Makefile
|
|
|
|
toolkit/themes/winstripe/global/Makefile
|
|
|
|
toolkit/themes/winstripe/help/Makefile
|
|
|
|
toolkit/themes/winstripe/mozapps/Makefile
|
2003-11-04 10:57:54 +03:00
|
|
|
toolkit/xre/Makefile
|
2002-08-07 10:37:13 +04:00
|
|
|
"
|
|
|
|
|
2003-09-24 17:59:37 +04:00
|
|
|
MAKEFILES_standalone_composer="
|
|
|
|
composer/Makefile
|
|
|
|
composer/app/Makefile
|
|
|
|
composer/app/profile/Makefile
|
|
|
|
composer/base/Makefile
|
|
|
|
xpfe/components/build2/Makefile
|
|
|
|
"
|
|
|
|
|
2005-02-09 00:19:38 +03:00
|
|
|
MAKEFILES_calendar="
|
|
|
|
calendar/Makefile
|
|
|
|
calendar/resources/Makefile
|
|
|
|
calendar/libical/Makefile
|
|
|
|
calendar/libical/src/Makefile
|
|
|
|
calendar/libical/src/libical/Makefile
|
|
|
|
calendar/libical/src/libicalss/Makefile
|
2004-11-29 22:36:45 +03:00
|
|
|
calendar/base/Makefile
|
|
|
|
calendar/base/public/Makefile
|
|
|
|
calendar/base/src/Makefile
|
|
|
|
calendar/base/build/Makefile
|
|
|
|
calendar/providers/Makefile
|
|
|
|
calendar/providers/memory/Makefile
|
|
|
|
calendar/providers/storage/Makefile
|
|
|
|
calendar/providers/composite/Makefile
|
2004-06-02 22:06:03 +04:00
|
|
|
"
|
|
|
|
|
2005-02-09 00:19:38 +03:00
|
|
|
MAKEFILES_sunbird="
|
2006-06-09 05:59:48 +04:00
|
|
|
calendar/installer/Makefile
|
|
|
|
calendar/installer/windows/Makefile
|
2006-06-08 00:47:11 +04:00
|
|
|
calendar/locales/Makefile
|
2005-02-09 00:19:38 +03:00
|
|
|
calendar/sunbird/Makefile
|
|
|
|
calendar/sunbird/app/Makefile
|
|
|
|
calendar/sunbird/base/Makefile
|
|
|
|
"
|
|
|
|
|
2004-11-24 01:22:58 +03:00
|
|
|
MAKEFILES_macbrowser="
|
|
|
|
camino/Makefile
|
2007-02-21 23:24:55 +03:00
|
|
|
camino/flashblock/Makefile
|
2005-08-18 17:11:46 +04:00
|
|
|
camino/installer/Makefile
|
2004-11-24 01:22:58 +03:00
|
|
|
"
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
if [ "$MOZ_MAIL_NEWS" ]; then
|
2000-12-27 08:29:50 +03:00
|
|
|
if [ -f ${srcdir}/mailnews/makefiles ]; then
|
|
|
|
MAKEFILES_mailnews=`cat ${srcdir}/mailnews/makefiles`
|
|
|
|
fi
|
2000-05-20 06:45:59 +04:00
|
|
|
fi
|
|
|
|
|
2003-05-02 07:57:15 +04:00
|
|
|
MAKEFILES_ipcd="
|
|
|
|
ipc/ipcd/Makefile
|
|
|
|
ipc/ipcd/daemon/public/Makefile
|
|
|
|
ipc/ipcd/daemon/src/Makefile
|
|
|
|
ipc/ipcd/client/public/Makefile
|
|
|
|
ipc/ipcd/client/src/Makefile
|
|
|
|
ipc/ipcd/shared/src/Makefile
|
|
|
|
ipc/ipcd/test/Makefile
|
|
|
|
ipc/ipcd/test/module/Makefile
|
|
|
|
ipc/ipcd/extensions/Makefile
|
|
|
|
ipc/ipcd/extensions/lock/Makefile
|
|
|
|
ipc/ipcd/extensions/lock/public/Makefile
|
|
|
|
ipc/ipcd/extensions/lock/src/Makefile
|
|
|
|
ipc/ipcd/extensions/lock/src/module/Makefile
|
|
|
|
ipc/ipcd/util/Makefile
|
|
|
|
ipc/ipcd/util/public/Makefile
|
|
|
|
ipc/ipcd/util/src/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_transmngr="
|
|
|
|
ipc/ipcd/extensions/transmngr/Makefile
|
|
|
|
ipc/ipcd/extensions/transmngr/public/Makefile
|
|
|
|
ipc/ipcd/extensions/transmngr/src/Makefile
|
|
|
|
ipc/ipcd/extensions/transmngr/build/Makefile
|
|
|
|
ipc/ipcd/extensions/transmngr/test/Makefile
|
|
|
|
ipc/ipcd/extensions/transmngr/common/Makefile
|
|
|
|
ipc/ipcd/extensions/transmngr/module/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_profilesharingsetup="
|
|
|
|
embedding/components/profilesharingsetup/Makefile
|
|
|
|
embedding/components/profilesharingsetup/public/Makefile
|
|
|
|
embedding/components/profilesharingsetup/src/Makefile
|
|
|
|
"
|
2001-03-20 02:26:47 +03:00
|
|
|
|
|
|
|
MAKEFILES_libpr0n="
|
|
|
|
modules/libpr0n/Makefile
|
2006-04-10 22:44:31 +04:00
|
|
|
modules/libpr0n/build/Makefile
|
2001-03-20 02:26:47 +03:00
|
|
|
modules/libpr0n/public/Makefile
|
|
|
|
modules/libpr0n/src/Makefile
|
|
|
|
modules/libpr0n/decoders/Makefile
|
|
|
|
modules/libpr0n/decoders/gif/Makefile
|
|
|
|
modules/libpr0n/decoders/png/Makefile
|
|
|
|
modules/libpr0n/decoders/jpeg/Makefile
|
2001-11-03 10:10:51 +03:00
|
|
|
modules/libpr0n/decoders/bmp/Makefile
|
2001-12-18 12:14:29 +03:00
|
|
|
modules/libpr0n/decoders/icon/Makefile
|
|
|
|
modules/libpr0n/decoders/icon/win/Makefile
|
2004-05-18 23:00:56 +04:00
|
|
|
modules/libpr0n/decoders/icon/gtk/Makefile
|
2006-01-28 17:25:18 +03:00
|
|
|
modules/libpr0n/decoders/icon/beos/Makefile
|
2002-06-12 02:33:13 +04:00
|
|
|
modules/libpr0n/decoders/xbm/Makefile
|
2005-09-01 02:15:33 +04:00
|
|
|
modules/libpr0n/encoders/Makefile
|
|
|
|
modules/libpr0n/encoders/png/Makefile
|
2005-11-15 21:29:23 +03:00
|
|
|
modules/libpr0n/encoders/jpeg/Makefile
|
2001-03-20 02:26:47 +03:00
|
|
|
"
|
|
|
|
|
2001-03-29 02:16:03 +04:00
|
|
|
MAKEFILES_accessible="
|
|
|
|
accessible/Makefile
|
|
|
|
accessible/public/Makefile
|
2003-04-02 00:02:51 +04:00
|
|
|
accessible/public/msaa/Makefile
|
2001-03-29 02:16:03 +04:00
|
|
|
accessible/src/Makefile
|
2001-12-16 02:50:14 +03:00
|
|
|
accessible/src/base/Makefile
|
|
|
|
accessible/src/html/Makefile
|
|
|
|
accessible/src/xul/Makefile
|
2003-04-02 00:02:51 +04:00
|
|
|
accessible/src/msaa/Makefile
|
|
|
|
accessible/src/atk/Makefile
|
|
|
|
accessible/src/mac/Makefile
|
2001-03-29 02:16:03 +04:00
|
|
|
accessible/build/Makefile
|
|
|
|
"
|
2003-04-02 00:02:51 +04:00
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
if [ ! "$SYSTEM_JPEG" ]; then
|
|
|
|
MAKEFILES_jpeg="jpeg/Makefile"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! "$SYSTEM_ZLIB" ]; then
|
|
|
|
MAKEFILES_zlib="
|
|
|
|
modules/zlib/Makefile
|
|
|
|
modules/zlib/src/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2001-03-10 03:54:38 +03:00
|
|
|
MAKEFILES_zlib="
|
|
|
|
$MAKEFILES_zlib
|
|
|
|
modules/zlib/standalone/Makefile
|
|
|
|
"
|
|
|
|
|
2005-06-08 22:04:25 +04:00
|
|
|
MAKEFILES_libbz2="
|
|
|
|
modules/libbz2/Makefile
|
|
|
|
modules/libbz2/src/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libmar="
|
|
|
|
modules/libmar/Makefile
|
|
|
|
modules/libmar/src/Makefile
|
2005-06-18 02:59:13 +04:00
|
|
|
modules/libmar/tool/Makefile
|
2005-06-08 22:04:25 +04:00
|
|
|
"
|
2001-03-10 03:54:38 +03:00
|
|
|
|
2005-06-18 02:59:13 +04:00
|
|
|
if test -n "$MOZ_UPDATE_PACKAGING"; then
|
2006-04-06 20:51:10 +04:00
|
|
|
MAKEFILES_update_packaging="
|
|
|
|
tools/update-packaging/Makefile
|
|
|
|
other-licenses/bsdiff/Makefile
|
|
|
|
"
|
2005-06-18 02:59:13 +04:00
|
|
|
fi
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
if [ ! "$SYSTEM_PNG" ]; then
|
|
|
|
MAKEFILES_libimg="$MAKEFILES_libimg modules/libimg/png/Makefile"
|
|
|
|
fi
|
2000-05-09 01:35:40 +04:00
|
|
|
|
2004-07-16 02:51:19 +04:00
|
|
|
MAKEFILES_gnome="
|
|
|
|
toolkit/Makefile
|
2006-09-28 00:17:56 +04:00
|
|
|
toolkit/system/gnome/Makefile
|
2004-07-16 02:51:19 +04:00
|
|
|
"
|
|
|
|
|
1999-10-08 05:32:44 +04:00
|
|
|
#
|
|
|
|
# l10n/
|
|
|
|
#
|
2000-12-27 08:29:50 +03:00
|
|
|
if [ -f ${srcdir}/l10n/makefiles.all ]; then
|
|
|
|
MAKEFILES_langpacks=`cat ${srcdir}/l10n/makefiles.all`
|
|
|
|
fi
|
2000-06-25 01:48:17 +04:00
|
|
|
|
1999-10-08 05:32:44 +04:00
|
|
|
if [ "$MOZ_L10N" ]; then
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_l10n="l10n/Makefile"
|
|
|
|
|
|
|
|
if [ "$MOZ_L10N_LANG" ]; then
|
|
|
|
MAKEFILES_l10n_lang="
|
1999-10-08 05:32:44 +04:00
|
|
|
l10n/lang/Makefile
|
|
|
|
l10n/lang/addressbook/Makefile
|
|
|
|
l10n/lang/bookmarks/Makefile
|
|
|
|
l10n/lang/directory/Makefile
|
|
|
|
l10n/lang/editor/Makefile
|
|
|
|
l10n/lang/global/Makefile
|
|
|
|
l10n/lang/history/Makefile
|
|
|
|
l10n/lang/messenger/Makefile
|
|
|
|
l10n/lang/messengercompose/Makefile
|
|
|
|
l10n/lang/navigator/Makefile
|
|
|
|
l10n/lang/pref/Makefile
|
|
|
|
l10n/lang/related/Makefile
|
|
|
|
l10n/lang/sidebar/Makefile
|
|
|
|
l10n/lang/addressbook/locale/Makefile
|
|
|
|
l10n/lang/bookmarks/locale/Makefile
|
|
|
|
l10n/lang/directory/locale/Makefile
|
|
|
|
l10n/lang/editor/locale/Makefile
|
|
|
|
l10n/lang/global/locale/Makefile
|
|
|
|
l10n/lang/history/locale/Makefile
|
|
|
|
l10n/lang/messenger/locale/Makefile
|
|
|
|
l10n/lang/messengercompose/locale/Makefile
|
|
|
|
l10n/lang/navigator/locale/Makefile
|
|
|
|
l10n/lang/pref/locale/Makefile
|
|
|
|
l10n/lang/related/locale/Makefile
|
|
|
|
l10n/lang/sidebar/locale/Makefile
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
1999-10-08 05:32:44 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2000-01-18 05:45:07 +03:00
|
|
|
# tools/jprof
|
|
|
|
if [ "$MOZ_JPROF" ]; then
|
2001-06-30 02:45:45 +04:00
|
|
|
MAKEFILES_jprof="tools/jprof/Makefile
|
|
|
|
tools/jprof/stub/Makefile"
|
2000-01-18 05:45:07 +03:00
|
|
|
fi
|
|
|
|
|
1999-09-26 00:44:48 +04:00
|
|
|
# tools/leaky
|
|
|
|
if [ "$MOZ_LEAKY" ]; then
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_leaky="tools/leaky/Makefile"
|
1999-09-26 00:44:48 +04:00
|
|
|
fi
|
1999-10-13 04:46:09 +04:00
|
|
|
|
2001-09-08 22:29:24 +04:00
|
|
|
# tools/trace-malloc
|
|
|
|
if [ "$NS_TRACE_MALLOC" ]; then
|
2003-01-15 23:40:06 +03:00
|
|
|
MAKEFILES_tracemalloc="tools/trace-malloc/Makefile tools/trace-malloc/lib/Makefile"
|
2001-09-08 22:29:24 +04:00
|
|
|
fi
|
|
|
|
|
2002-10-09 01:40:10 +04:00
|
|
|
# tools/codesighs
|
|
|
|
if [ "$MOZ_MAPINFO" ]; then
|
|
|
|
MAKEFILES_codesighs="tools/codesighs/Makefile"
|
|
|
|
fi
|
|
|
|
|
2002-02-14 04:33:17 +03:00
|
|
|
# MathML
|
1999-10-13 04:46:09 +04:00
|
|
|
if [ "$MOZ_MATHML" ]; then
|
2002-02-14 04:33:17 +03:00
|
|
|
MAKEFILES_intl="$MAKEFILES_intl
|
|
|
|
intl/uconv/ucvmath/Makefile
|
|
|
|
"
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_layout="$MAKEFILES_layout
|
|
|
|
layout/mathml/Makefile
|
|
|
|
layout/mathml/base/Makefile
|
|
|
|
layout/mathml/base/src/Makefile
|
|
|
|
layout/mathml/content/Makefile
|
|
|
|
layout/mathml/content/src/Makefile
|
|
|
|
"
|
1999-10-13 04:46:09 +04:00
|
|
|
fi
|
1999-11-10 02:30:32 +03:00
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
# svg
|
2000-05-05 08:32:50 +04:00
|
|
|
if [ "$MOZ_SVG" ]; then
|
2001-12-12 10:59:31 +03:00
|
|
|
MAKEFILES_content="$MAKEFILES_content
|
|
|
|
content/svg/Makefile
|
|
|
|
content/svg/document/Makefile
|
|
|
|
content/svg/document/src/Makefile
|
|
|
|
content/svg/content/Makefile
|
|
|
|
content/svg/content/src/Makefile
|
|
|
|
"
|
|
|
|
MAKEFILES_dom="$MAKEFILES_dom
|
|
|
|
dom/public/idl/svg/Makefile
|
|
|
|
"
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_layout="$MAKEFILES_layout
|
|
|
|
layout/svg/Makefile
|
|
|
|
layout/svg/base/Makefile
|
|
|
|
layout/svg/base/src/Makefile
|
|
|
|
"
|
2000-05-05 08:32:50 +04:00
|
|
|
fi
|
|
|
|
|
2004-10-08 00:59:53 +04:00
|
|
|
# xtf
|
|
|
|
if [ "$MOZ_XTF" ]; then
|
|
|
|
MAKEFILES_content="$MAKEFILES_content
|
|
|
|
content/xtf/Makefile
|
|
|
|
content/xtf/public/Makefile
|
|
|
|
content/xtf/src/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2005-11-22 20:20:37 +03:00
|
|
|
if [ "$MOZ_XMLEXTRAS" ]; then
|
|
|
|
MAKEFILES_content="$MAKEFILES_content
|
|
|
|
extensions/xmlextras/Makefile
|
|
|
|
extensions/xmlextras/pointers/Makefile
|
|
|
|
extensions/xmlextras/pointers/src/Makefile
|
|
|
|
extensions/xmlextras/build/Makefile
|
|
|
|
extensions/xmlextras/build/src/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2005-12-20 17:13:01 +03:00
|
|
|
if [ "$MOZ_WEBSERVICES" ]; then
|
|
|
|
MAKEFILES_content="$MAKEFILES_content
|
|
|
|
extensions/webservices/Makefile
|
|
|
|
extensions/webservices/build/Makefile
|
|
|
|
extensions/webservices/build/src/Makefile
|
|
|
|
extensions/webservices/interfaceinfo/Makefile
|
|
|
|
extensions/webservices/interfaceinfo/src/Makefile
|
|
|
|
extensions/webservices/proxy/Makefile
|
|
|
|
extensions/webservices/proxy/src/Makefile
|
|
|
|
extensions/webservices/public/Makefile
|
|
|
|
extensions/webservices/security/Makefile
|
|
|
|
extensions/webservices/security/src/Makefile
|
|
|
|
extensions/webservices/schema/Makefile
|
|
|
|
extensions/webservices/schema/src/Makefile
|
|
|
|
extensions/webservices/soap/Makefile
|
|
|
|
extensions/webservices/soap/src/Makefile
|
|
|
|
extensions/webservices/wsdl/Makefile
|
|
|
|
extensions/webservices/wsdl/src/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2005-12-15 17:17:20 +03:00
|
|
|
if [ "$MOZ_JAVAXPCOM" ]; then
|
|
|
|
MAKEFILES_javaxpcom="
|
|
|
|
extensions/java/Makefile
|
|
|
|
extensions/java/xpcom/Makefile
|
|
|
|
extensions/java/xpcom/interfaces/Makefile
|
|
|
|
extensions/java/xpcom/src/Makefile
|
|
|
|
extensions/java/xpcom/glue/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-09 10:58:37 +04:00
|
|
|
# directory/xpcom
|
|
|
|
if [ "$MOZ_LDAP_XPCOM" ]; then
|
2000-05-20 06:45:59 +04:00
|
|
|
MAKEFILES_ldap="
|
|
|
|
directory/xpcom/Makefile
|
|
|
|
directory/xpcom/base/Makefile
|
|
|
|
directory/xpcom/base/public/Makefile
|
|
|
|
directory/xpcom/base/src/Makefile
|
|
|
|
"
|
2000-05-09 10:58:37 +04:00
|
|
|
fi
|
|
|
|
|
2003-06-10 02:25:25 +04:00
|
|
|
# embedding/componentlib
|
|
|
|
|
|
|
|
if [ "$MOZ_COMPONENTLIB" ]; then
|
|
|
|
MAKEFILES_static_components="$MAKEFILE_static_components
|
|
|
|
embedding/componentlib/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2000-11-22 02:40:34 +03:00
|
|
|
# modules/staticmod
|
|
|
|
|
2001-11-14 06:50:32 +03:00
|
|
|
if [ "$MOZ_STATIC_COMPONENTS" -o "$MOZ_META_COMPONENTS" ]; then
|
2000-11-22 02:40:34 +03:00
|
|
|
MAKEFILES_static_components="$MAKEFILES_static_components
|
2001-03-20 08:42:58 +03:00
|
|
|
modules/staticmod/Makefile
|
2000-11-22 02:40:34 +03:00
|
|
|
"
|
|
|
|
fi
|
2003-06-10 02:25:25 +04:00
|
|
|
fi
|
2000-11-22 02:40:34 +03:00
|
|
|
|
2005-12-15 20:50:47 +03:00
|
|
|
if [ "$MOZ_PREF_EXTENSIONS" ]; then
|
2007-05-24 00:08:44 +04:00
|
|
|
MOZ_EXTENSIONS="$MOZ_EXTENSIONS pref"
|
2005-12-15 20:50:47 +03:00
|
|
|
fi
|
|
|
|
|
2000-05-25 02:54:58 +04:00
|
|
|
for extension in $MOZ_EXTENSIONS; do
|
2007-05-24 00:08:44 +04:00
|
|
|
if [ -f "${srcdir}/extensions/${extension}/makefiles.sh" ]; then
|
2007-05-24 21:45:55 +04:00
|
|
|
. "${srcdir}/extensions/${extension}/makefiles.sh"
|
2007-05-24 00:08:44 +04:00
|
|
|
fi
|
2000-05-20 06:45:59 +04:00
|
|
|
done
|
1999-11-10 02:30:32 +03:00
|
|
|
|
2000-06-14 10:46:51 +04:00
|
|
|
MAKEFILES_themes=`cat ${srcdir}/themes/makefiles`
|
|
|
|
|
2000-05-20 06:45:59 +04:00
|
|
|
add_makefiles "
|
|
|
|
$MAKEFILES_caps
|
2005-06-08 20:48:44 +04:00
|
|
|
$MAKEFILES_chrome
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_db
|
|
|
|
$MAKEFILES_docshell
|
|
|
|
$MAKEFILES_dom
|
|
|
|
$MAKEFILES_editor
|
2002-10-09 01:40:10 +04:00
|
|
|
$MAKEFILES_codesighs
|
2002-10-01 04:16:51 +04:00
|
|
|
$MAKEFILES_composer
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_embedding
|
|
|
|
$MAKEFILES_expat
|
|
|
|
$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_gfx
|
2001-03-29 02:16:03 +04:00
|
|
|
$MAKEFILES_accessible
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_htmlparser
|
|
|
|
$MAKEFILES_intl
|
2005-12-15 17:17:20 +03:00
|
|
|
$MAKEFILES_javaxpcom
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_ldap
|
|
|
|
$MAKEFILES_leaky
|
|
|
|
$MAKEFILES_jpeg
|
|
|
|
$MAKEFILES_jprof
|
|
|
|
$MAKEFILES_js
|
2001-05-16 00:48:23 +04:00
|
|
|
$MAKEFILES_jsdebugger
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_l10n
|
|
|
|
$MAKEFILES_l10n_lang
|
2000-06-27 04:24:48 +04:00
|
|
|
$MAKEFILES_langpacks
|
2001-02-20 00:50:04 +03:00
|
|
|
$MAKEFILES_content
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_layout
|
2001-12-12 10:59:31 +03:00
|
|
|
$MAKEFILES_libart
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_libreg
|
|
|
|
$MAKEFILES_libimg
|
2001-03-20 02:26:47 +03:00
|
|
|
$MAKEFILES_libpr0n
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_libjar
|
|
|
|
$MAKEFILES_libpref
|
|
|
|
$MAKEFILES_libutil
|
|
|
|
$MAKEFILES_liveconnect
|
2001-11-27 22:27:46 +03:00
|
|
|
$MAKEFILES_macmorefiles
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_mailnews
|
|
|
|
$MAKEFILES_oji
|
|
|
|
$MAKEFILES_plugin
|
|
|
|
$MAKEFILES_netwerk
|
|
|
|
$MAKEFILES_profile
|
|
|
|
$MAKEFILES_rdf
|
2001-03-20 08:42:58 +03:00
|
|
|
$MAKEFILES_static_components
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_sun_java
|
|
|
|
$MAKEFILES_themes
|
2001-09-08 22:29:24 +04:00
|
|
|
$MAKEFILES_tracemalloc
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_uriloader
|
|
|
|
$MAKEFILES_view
|
|
|
|
$MAKEFILES_webshell
|
|
|
|
$MAKEFILES_widget
|
2002-02-26 20:28:48 +03:00
|
|
|
$MAKEFILES_xft
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_xpcom
|
2003-08-15 03:50:21 +04:00
|
|
|
$MAKEFILES_xpcom_obsolete
|
2000-12-27 08:29:50 +03:00
|
|
|
$MAKEFILES_xpcom_tests
|
2000-05-20 06:45:59 +04:00
|
|
|
$MAKEFILES_xpconnect
|
|
|
|
$MAKEFILES_xpinstall
|
|
|
|
$MAKEFILES_xpfe
|
|
|
|
$MAKEFILES_zlib
|
2005-06-08 22:04:25 +04:00
|
|
|
$MAKEFILES_libbz2
|
|
|
|
$MAKEFILES_libmar
|
2005-06-18 02:59:13 +04:00
|
|
|
$MAKEFILES_update_packaging
|
2000-05-20 06:45:59 +04:00
|
|
|
"
|
2000-03-01 05:38:38 +03:00
|
|
|
|
2001-05-10 07:00:37 +04:00
|
|
|
if test -n "$MOZ_PSM"; then
|
|
|
|
add_makefiles "$MAKEFILES_psm2"
|
|
|
|
fi
|
|
|
|
|
2001-11-13 10:57:31 +03:00
|
|
|
if test -n "$MOZ_CALENDAR"; then
|
|
|
|
add_makefiles "$MAKEFILES_calendar"
|
|
|
|
fi
|
|
|
|
|
2003-04-17 10:14:23 +04:00
|
|
|
if test -n "$MOZ_XUL_APP"; then
|
|
|
|
add_makefiles "$MAKEFILES_xulapp"
|
|
|
|
fi
|
|
|
|
|
2004-09-09 23:10:39 +04:00
|
|
|
if test -n "$MOZ_XULRUNNER"; then
|
|
|
|
add_makefiles "$MAKEFILES_xulrunner"
|
|
|
|
fi
|
|
|
|
|
2003-09-24 17:59:37 +04:00
|
|
|
if test -n "$MOZ_STANDALONE_COMPOSER"; then
|
|
|
|
add_makefiles "$MAKEFILES_standalone_composer"
|
|
|
|
fi
|
|
|
|
|
2004-06-02 22:06:03 +04:00
|
|
|
if test -n "$MOZ_SUNBIRD"; then
|
|
|
|
add_makefiles "$MAKEFILES_sunbird"
|
|
|
|
fi
|
|
|
|
|
2006-08-29 20:53:40 +04:00
|
|
|
if test "$MOZ_BUILD_APP" = "camino"; then
|
2004-11-24 01:22:58 +03:00
|
|
|
add_makefiles "$MAKEFILES_macbrowser"
|
|
|
|
fi
|
|
|
|
|
2003-05-02 07:57:15 +04:00
|
|
|
if test -n "$MOZ_IPCD"; then
|
|
|
|
add_makefiles "$MAKEFILES_ipcd"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$MOZ_PROFILESHARING"; then
|
|
|
|
add_makefiles "$MAKEFILES_transmngr"
|
|
|
|
add_makefiles "$MAKEFILES_profilesharingsetup"
|
|
|
|
fi
|
|
|
|
|
2005-08-10 07:33:15 +04:00
|
|
|
if test -n "$MINIMO"; then
|
2003-07-23 08:58:59 +04:00
|
|
|
add_makefiles "$MAKEFILES_minimo"
|
2005-06-08 20:48:44 +04:00
|
|
|
add_makefiles "$MAKEFILES_xulapp"
|
2003-07-23 08:58:59 +04:00
|
|
|
fi
|
|
|
|
|
2004-07-16 02:51:19 +04:00
|
|
|
if test -n "$MOZ_ENABLE_GTK2"; then
|
|
|
|
add_makefiles "$MAKEFILES_gnome"
|
|
|
|
fi
|
|
|
|
|
2004-10-09 04:10:14 +04:00
|
|
|
if test -n "$MOZ_STORAGE"; then
|
|
|
|
add_makefiles "$MAKEFILES_storage"
|
|
|
|
fi
|
2007-05-24 00:08:44 +04:00
|
|
|
|
|
|
|
if test -f "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"; then
|
2007-05-24 21:45:55 +04:00
|
|
|
. "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"
|
2007-05-24 00:08:44 +04:00
|
|
|
fi
|