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
|
|
|
|
|
|
|
# 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.
|
|
|
|
#
|
2000-05-20 02:45:59 +00:00
|
|
|
# Please keep the modules in this file in sync with those in
|
|
|
|
# mozilla/build/unix/modules.mk
|
|
|
|
#
|
1999-02-16 18:29:51 +00:00
|
|
|
|
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() {
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES="$MAKEFILES $*"
|
1999-02-16 18:29:51 +00:00
|
|
|
}
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
if [ "$srcdir" = "" ]; then
|
1999-03-06 20:38:24 +00:00
|
|
|
srcdir=.
|
|
|
|
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
|
|
|
|
build/unix/Makefile
|
|
|
|
config/Makefile
|
|
|
|
config/autoconf.mk
|
|
|
|
config/mkdepend/Makefile
|
2002-03-22 19:22:13 +00:00
|
|
|
config/doxygen.cfg
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
2000-05-18 19:37:33 +00:00
|
|
|
|
2002-10-01 00:16:51 +00:00
|
|
|
if [ "$MOZ_COMPOSER" ]; then
|
|
|
|
MAKEFILES_composer="
|
|
|
|
editor/composer/Makefile
|
|
|
|
editor/ui/Makefile
|
2005-08-04 19:07:19 +00:00
|
|
|
editor/ui/locales/Makefile
|
2002-10-01 00:16:51 +00:00
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_db="
|
1999-09-08 20:59:36 +00:00
|
|
|
db/Makefile
|
|
|
|
db/mdb/Makefile
|
|
|
|
db/mdb/public/Makefile
|
|
|
|
db/mork/Makefile
|
|
|
|
db/mork/build/Makefile
|
|
|
|
db/mork/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2004-10-09 00:10:14 +00:00
|
|
|
MAKEFILES_storage="
|
|
|
|
db/sqlite3/src/Makefile
|
2006-01-18 01:00:22 +00:00
|
|
|
db/morkreader/Makefile
|
2004-10-09 00:10:14 +00:00
|
|
|
storage/Makefile
|
|
|
|
storage/public/Makefile
|
|
|
|
storage/src/Makefile
|
|
|
|
storage/build/Makefile
|
|
|
|
storage/test/Makefile
|
|
|
|
"
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_dom="
|
1999-02-16 18:29:51 +00:00
|
|
|
dom/Makefile
|
|
|
|
dom/public/Makefile
|
|
|
|
dom/public/base/Makefile
|
|
|
|
dom/public/coreEvents/Makefile
|
1999-09-01 00:55:35 +00:00
|
|
|
dom/public/idl/Makefile
|
|
|
|
dom/public/idl/base/Makefile
|
2005-04-18 06:33:23 +00: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 16:46:42 +00:00
|
|
|
dom/public/idl/core/Makefile
|
1999-09-01 00:55:35 +00: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 16:46:42 +00:00
|
|
|
dom/public/idl/stylesheets/Makefile
|
|
|
|
dom/public/idl/views/Makefile
|
|
|
|
dom/public/idl/xbl/Makefile
|
2002-03-14 12:18:04 +00:00
|
|
|
dom/public/idl/xpath/Makefile
|
2001-02-22 03:01:34 +00:00
|
|
|
dom/public/idl/xul/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
dom/src/Makefile
|
|
|
|
dom/src/base/Makefile
|
|
|
|
dom/src/events/Makefile
|
|
|
|
dom/src/jsurl/Makefile
|
2004-12-04 18:41:18 +00:00
|
|
|
dom/locales/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_editor="
|
1999-02-16 18:29:51 +00:00
|
|
|
editor/Makefile
|
|
|
|
editor/public/Makefile
|
1999-06-11 19:01:36 +00:00
|
|
|
editor/idl/Makefile
|
1999-05-19 20:26:51 +00:00
|
|
|
editor/txmgr/Makefile
|
1999-09-21 22:28:08 +00:00
|
|
|
editor/txmgr/idl/Makefile
|
1999-05-19 20:26:51 +00: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 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_expat="
|
2004-05-04 11:46:11 +00:00
|
|
|
parser/expat/Makefile
|
|
|
|
parser/expat/lib/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_extensions="
|
1999-03-29 22:51:11 +00:00
|
|
|
extensions/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2001-02-18 16:51:46 +00:00
|
|
|
MAKEFILES_gc="
|
|
|
|
gc/boehm/Makefile
|
|
|
|
gc/boehm/leaksoup/Makefile
|
|
|
|
"
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_gfx="
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/Makefile
|
1999-09-01 00:38:23 +00:00
|
|
|
gfx/idl/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/public/Makefile
|
|
|
|
gfx/src/Makefile
|
1999-06-30 04:20:46 +00:00
|
|
|
gfx/src/beos/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/src/gtk/Makefile
|
1999-02-22 18:56:54 +00:00
|
|
|
gfx/src/ps/Makefile
|
2004-09-07 17:55:27 +00:00
|
|
|
gfx/src/psshared/Makefile
|
1999-05-11 21:03:27 +00:00
|
|
|
gfx/src/photon/Makefile
|
2000-03-11 03:08:04 +00:00
|
|
|
gfx/src/mac/Makefile
|
2004-10-11 04:01:49 +00:00
|
|
|
gfx/src/qt/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
gfx/src/os2/Makefile
|
1999-07-07 02:16:24 +00:00
|
|
|
gfx/src/xlibrgb/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
gfx/src/windows/Makefile
|
2005-08-20 06:21:16 +00:00
|
|
|
gfx/src/thebes/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/tests/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2005-04-19 17:19:47 +00: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 06:21:16 +00:00
|
|
|
gfx/cairo/glitz/src/Makefile
|
|
|
|
gfx/cairo/glitz/src/glx/Makefile
|
|
|
|
gfx/cairo/glitz/src/wgl/Makefile
|
2005-04-19 17:19:47 +00:00
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_htmlparser="
|
2004-05-04 11:46:11 +00: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 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_intl="
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/Makefile
|
1999-05-17 19:08:19 +00:00
|
|
|
intl/chardet/Makefile
|
|
|
|
intl/chardet/public/Makefile
|
|
|
|
intl/chardet/src/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/uconv/Makefile
|
2000-01-11 03:46:42 +00:00
|
|
|
intl/uconv/idl/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/uconv/public/Makefile
|
|
|
|
intl/uconv/src/Makefile
|
|
|
|
intl/uconv/tests/Makefile
|
|
|
|
intl/uconv/ucvja/Makefile
|
|
|
|
intl/uconv/ucvlatin/Makefile
|
1999-04-06 23:10:57 +00:00
|
|
|
intl/uconv/ucvcn/Makefile
|
1999-05-31 16:33:13 +00:00
|
|
|
intl/uconv/ucvtw/Makefile
|
|
|
|
intl/uconv/ucvtw2/Makefile
|
|
|
|
intl/uconv/ucvko/Makefile
|
2000-01-06 21:35:12 +00:00
|
|
|
intl/uconv/ucvibm/Makefile
|
2003-03-15 01:04:32 +00:00
|
|
|
intl/uconv/native/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/locale/Makefile
|
|
|
|
intl/locale/public/Makefile
|
1999-08-02 03:00:23 +00:00
|
|
|
intl/locale/idl/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/locale/src/Makefile
|
|
|
|
intl/locale/src/unix/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
intl/locale/src/os2/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
intl/locale/src/windows/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/locale/tests/Makefile
|
1999-02-16 19:28:33 +00:00
|
|
|
intl/lwbrk/Makefile
|
|
|
|
intl/lwbrk/src/Makefile
|
|
|
|
intl/lwbrk/public/Makefile
|
|
|
|
intl/lwbrk/tests/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/unicharutil/Makefile
|
2006-06-07 16:25:40 +00:00
|
|
|
intl/unicharutil/util/Makefile
|
|
|
|
intl/unicharutil/util/internal/Makefile
|
1999-08-21 02:51:15 +00:00
|
|
|
intl/unicharutil/idl/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
intl/unicharutil/src/Makefile
|
|
|
|
intl/unicharutil/public/Makefile
|
1999-08-21 02:51:15 +00:00
|
|
|
intl/unicharutil/tables/Makefile
|
1999-02-16 18:29:51 +00: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 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2002-08-23 23:09:22 +00: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 08:18:17 +00:00
|
|
|
intl/ctl/src/hindiShaper/Makefile
|
2002-08-23 23:09:22 +00:00
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2005-12-16 20:55:44 +00: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 02:45:59 +00:00
|
|
|
MAKEFILES_js="
|
1999-02-16 18:29:51 +00:00
|
|
|
js/src/Makefile
|
|
|
|
js/src/fdlibm/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_liveconnect="
|
1999-02-16 18:29:51 +00:00
|
|
|
js/src/liveconnect/Makefile
|
|
|
|
js/src/liveconnect/classes/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpconnect="
|
1999-02-16 18:29:51 +00:00
|
|
|
js/src/xpconnect/Makefile
|
1999-03-23 20:49:58 +00:00
|
|
|
js/src/xpconnect/public/Makefile
|
1999-05-14 08:27:27 +00:00
|
|
|
js/src/xpconnect/idl/Makefile
|
1999-04-10 16:15:02 +00:00
|
|
|
js/src/xpconnect/shell/Makefile
|
1999-03-23 20:49:58 +00:00
|
|
|
js/src/xpconnect/src/Makefile
|
2000-01-11 03:46:42 +00:00
|
|
|
js/src/xpconnect/loader/Makefile
|
1999-03-23 20:49:58 +00:00
|
|
|
js/src/xpconnect/tests/Makefile
|
1999-04-10 16:10:34 +00:00
|
|
|
js/src/xpconnect/tests/components/Makefile
|
1999-12-18 20:29:29 +00:00
|
|
|
js/src/xpconnect/tests/idl/Makefile
|
1999-04-10 20:46:22 +00:00
|
|
|
js/src/xpconnect/shell/Makefile
|
2000-07-13 05:19:46 +00:00
|
|
|
js/src/xpconnect/tools/Makefile
|
|
|
|
js/src/xpconnect/tools/idl/Makefile
|
|
|
|
js/src/xpconnect/tools/idl/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2001-05-15 20:48:23 +00:00
|
|
|
MAKEFILES_jsdebugger="
|
|
|
|
js/jsd/Makefile
|
|
|
|
js/jsd/idl/Makefile
|
|
|
|
"
|
|
|
|
|
2001-02-19 21:50:04 +00:00
|
|
|
MAKEFILES_content="
|
|
|
|
content/Makefile
|
|
|
|
content/base/Makefile
|
|
|
|
content/base/public/Makefile
|
|
|
|
content/base/src/Makefile
|
2005-04-18 06:33:23 +00:00
|
|
|
content/canvas/Makefile
|
|
|
|
content/canvas/public/Makefile
|
|
|
|
content/canvas/src/Makefile
|
2001-02-19 21:50:04 +00: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
|
2001-02-22 03:01:34 +00:00
|
|
|
content/xul/content/public/Makefile
|
2001-02-19 21:50:04 +00:00
|
|
|
content/xul/content/src/Makefile
|
2001-02-22 03:01:34 +00: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-19 21:50:04 +00:00
|
|
|
content/xbl/Makefile
|
|
|
|
content/xbl/public/Makefile
|
|
|
|
content/xbl/src/Makefile
|
|
|
|
content/xbl/builtin/Makefile
|
2005-11-02 21:04:05 +00: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-19 21:50:04 +00:00
|
|
|
"
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_layout="
|
1999-02-16 18:29:51 +00:00
|
|
|
layout/Makefile
|
|
|
|
layout/base/Makefile
|
|
|
|
layout/base/tests/Makefile
|
|
|
|
layout/build/Makefile
|
2004-12-08 19:41:48 +00:00
|
|
|
layout/forms/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
layout/html/tests/Makefile
|
2004-12-08 19:41:48 +00:00
|
|
|
layout/style/Makefile
|
|
|
|
layout/printing/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
layout/tools/Makefile
|
|
|
|
layout/xul/Makefile
|
|
|
|
layout/xul/base/Makefile
|
1999-08-20 02:33:21 +00:00
|
|
|
layout/xul/base/public/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
layout/xul/base/src/Makefile
|
2002-03-29 05:25:37 +00:00
|
|
|
layout/xul/base/src/tree/Makefile
|
|
|
|
layout/xul/base/src/tree/src/Makefile
|
|
|
|
layout/xul/base/src/tree/public/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libimg="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/libimg/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libjar="
|
1999-03-25 20:47:28 +00:00
|
|
|
modules/libjar/Makefile
|
2000-12-27 05:29:50 +00:00
|
|
|
modules/libjar/standalone/Makefile
|
2006-09-14 17:16:42 +00:00
|
|
|
modules/libjar/test/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libreg="
|
|
|
|
modules/libreg/Makefile
|
|
|
|
modules/libreg/include/Makefile
|
|
|
|
modules/libreg/src/Makefile
|
2003-03-15 01:04:32 +00:00
|
|
|
modules/libreg/standalone/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libpref="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/libpref/Makefile
|
|
|
|
modules/libpref/public/Makefile
|
|
|
|
modules/libpref/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libutil="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/libutil/Makefile
|
|
|
|
modules/libutil/public/Makefile
|
|
|
|
modules/libutil/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_oji="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/oji/Makefile
|
|
|
|
modules/oji/public/Makefile
|
|
|
|
modules/oji/src/Makefile
|
2005-07-29 01:40:32 +00:00
|
|
|
plugin/oji/JEP/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_plugin="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/plugin/Makefile
|
2001-08-10 07:35:54 +00: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 02:33:16 +00: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 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2001-02-16 04:03:58 +00:00
|
|
|
MAKEFILES_access_builtin="
|
|
|
|
extensions/access-builtin/Makefile
|
|
|
|
extensions/access-builtin/accessproxy/Makefile
|
|
|
|
"
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_netwerk="
|
1999-11-02 01:54:54 +00:00
|
|
|
netwerk/Makefile
|
|
|
|
netwerk/base/Makefile
|
|
|
|
netwerk/base/public/Makefile
|
|
|
|
netwerk/base/src/Makefile
|
|
|
|
netwerk/build/Makefile
|
1999-12-07 04:28:23 +00:00
|
|
|
netwerk/cache/Makefile
|
|
|
|
netwerk/cache/public/Makefile
|
2001-10-06 22:26:35 +00:00
|
|
|
netwerk/cache/src/Makefile
|
2003-10-10 23:08:01 +00:00
|
|
|
netwerk/cookie/Makefile
|
|
|
|
netwerk/cookie/public/Makefile
|
|
|
|
netwerk/cookie/src/Makefile
|
1999-11-02 01:54:54 +00: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 02:51:01 +00:00
|
|
|
netwerk/protocol/gopher/Makefile
|
|
|
|
netwerk/protocol/gopher/src/Makefile
|
1999-11-02 01:54:54 +00:00
|
|
|
netwerk/protocol/http/Makefile
|
|
|
|
netwerk/protocol/http/public/Makefile
|
|
|
|
netwerk/protocol/http/src/Makefile
|
2000-02-03 07:51:21 +00:00
|
|
|
netwerk/protocol/res/Makefile
|
1999-11-29 10:10:21 +00:00
|
|
|
netwerk/protocol/res/public/Makefile
|
|
|
|
netwerk/protocol/res/src/Makefile
|
1999-11-02 01:54:54 +00: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-15 23:48:51 +00:00
|
|
|
netwerk/resources/Makefile
|
2004-12-04 18:41:18 +00:00
|
|
|
netwerk/locales/Makefile
|
2006-05-02 18:08:55 +00:00
|
|
|
netwerk/system/Makefile
|
|
|
|
netwerk/system/win32/Makefile
|
2000-12-27 05:29:50 +00:00
|
|
|
uriloader/exthandler/Makefile
|
|
|
|
intl/strres/public/Makefile
|
|
|
|
intl/locale/idl/Makefile
|
|
|
|
$MAKEFILES_js
|
|
|
|
modules/libpref/public/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2005-12-21 18:37:02 +00:00
|
|
|
if [ "$MOZ_AUTH_EXTENSION" ]; then
|
|
|
|
MAKEFILES_netwerk="$MAKEFILES_netwerk
|
|
|
|
extensions/auth/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_uriloader="
|
1999-11-18 06:05:16 +00:00
|
|
|
uriloader/Makefile
|
|
|
|
uriloader/base/Makefile
|
2000-06-21 01:16:32 +00:00
|
|
|
uriloader/exthandler/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_profile="
|
1999-04-15 20:21:48 +00:00
|
|
|
profile/Makefile
|
1999-04-16 07:42:06 +00:00
|
|
|
profile/src/Makefile
|
1999-04-15 20:21:48 +00:00
|
|
|
profile/public/Makefile
|
1999-05-05 04:38:45 +00:00
|
|
|
profile/resources/Makefile
|
1999-09-11 19:48:50 +00:00
|
|
|
profile/pref-migrator/Makefile
|
|
|
|
profile/pref-migrator/public/Makefile
|
|
|
|
profile/pref-migrator/src/Makefile
|
|
|
|
profile/pref-migrator/resources/Makefile
|
1999-07-09 04:39:31 +00:00
|
|
|
profile/defaults/Makefile
|
2002-11-09 19:38:43 +00:00
|
|
|
profile/dirserviceprovider/Makefile
|
|
|
|
profile/dirserviceprovider/public/Makefile
|
|
|
|
profile/dirserviceprovider/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_rdf="
|
1999-02-16 18:29:51 +00:00
|
|
|
rdf/Makefile
|
|
|
|
rdf/base/Makefile
|
1999-03-03 03:30:17 +00:00
|
|
|
rdf/base/idl/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
rdf/base/public/Makefile
|
|
|
|
rdf/base/src/Makefile
|
1999-02-24 09:54:36 +00:00
|
|
|
rdf/util/Makefile
|
|
|
|
rdf/util/public/Makefile
|
|
|
|
rdf/util/src/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
rdf/build/Makefile
|
|
|
|
rdf/datasource/Makefile
|
|
|
|
rdf/datasource/public/Makefile
|
|
|
|
rdf/datasource/src/Makefile
|
|
|
|
rdf/tests/Makefile
|
1999-04-02 20:19:34 +00:00
|
|
|
rdf/tests/rdfcat/Makefile
|
1999-05-05 03:19:16 +00:00
|
|
|
rdf/tests/rdfpoll/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_sun_java="
|
1999-02-16 18:29:51 +00:00
|
|
|
sun-java/Makefile
|
|
|
|
sun-java/stubs/Makefile
|
|
|
|
sun-java/stubs/include/Makefile
|
|
|
|
sun-java/stubs/jri/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_caps="
|
1999-02-16 18:29:51 +00:00
|
|
|
caps/Makefile
|
1999-07-15 23:23:16 +00:00
|
|
|
caps/idl/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
caps/include/Makefile
|
|
|
|
caps/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2005-06-08 16:48:44 +00: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 02:45:59 +00:00
|
|
|
MAKEFILES_view="
|
1999-02-16 18:29:51 +00:00
|
|
|
view/Makefile
|
|
|
|
view/public/Makefile
|
|
|
|
view/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_docshell="
|
1999-11-29 22:58:57 +00:00
|
|
|
docshell/Makefile
|
|
|
|
docshell/base/Makefile
|
2005-08-18 16:35:41 +00:00
|
|
|
docshell/shistory/Makefile
|
|
|
|
docshell/shistory/public/Makefile
|
|
|
|
docshell/shistory/src/Makefile
|
1999-11-29 22:58:57 +00:00
|
|
|
docshell/build/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_webshell="
|
1999-02-16 18:29:51 +00:00
|
|
|
webshell/Makefile
|
|
|
|
webshell/public/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_widget="
|
1999-02-16 18:29:51 +00:00
|
|
|
widget/Makefile
|
|
|
|
widget/public/Makefile
|
|
|
|
widget/src/Makefile
|
1999-06-30 04:20:46 +00:00
|
|
|
widget/src/beos/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
widget/src/build/Makefile
|
2000-04-22 20:45:12 +00:00
|
|
|
widget/src/gtkxtbin/Makefile
|
2004-10-11 04:01:49 +00:00
|
|
|
widget/src/qt/Makefile
|
1999-05-11 21:03:27 +00:00
|
|
|
widget/src/photon/Makefile
|
2000-03-11 03:08:04 +00:00
|
|
|
widget/src/mac/Makefile
|
2002-01-25 22:01:41 +00:00
|
|
|
widget/src/cocoa/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
widget/src/os2/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
widget/src/windows/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
widget/src/xpwidgets/Makefile
|
1999-08-17 16:09:40 +00:00
|
|
|
widget/src/support/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpcom="
|
2003-08-14 23:50:21 +00:00
|
|
|
xpcom/string/Makefile
|
|
|
|
xpcom/string/public/Makefile
|
|
|
|
xpcom/string/src/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
xpcom/Makefile
|
1999-05-26 01:38:36 +00:00
|
|
|
xpcom/base/Makefile
|
|
|
|
xpcom/build/Makefile
|
|
|
|
xpcom/components/Makefile
|
|
|
|
xpcom/ds/Makefile
|
2001-11-11 22:46:29 +00:00
|
|
|
xpcom/glue/Makefile
|
2002-03-21 23:43:21 +00:00
|
|
|
xpcom/glue/standalone/Makefile
|
1999-05-26 01:38:36 +00: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-02 21:33:43 +00:00
|
|
|
xpcom/reflect/xptcall/src/md/os2/Makefile
|
1999-05-26 01:38:36 +00:00
|
|
|
xpcom/reflect/xptcall/src/md/test/Makefile
|
|
|
|
xpcom/reflect/xptcall/src/md/unix/Makefile
|
2001-12-09 07:02:42 +00:00
|
|
|
xpcom/reflect/xptcall/src/md/win32/Makefile
|
1999-05-26 01:38:36 +00: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-12 23:54:34 +00:00
|
|
|
xpcom/sample/Makefile
|
1999-05-26 01:38:36 +00:00
|
|
|
xpcom/threads/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
xpcom/tools/Makefile
|
1999-04-05 04:54:10 +00:00
|
|
|
xpcom/tools/registry/Makefile
|
2004-12-09 19:28:35 +00:00
|
|
|
xpcom/stub/Makefile
|
2001-12-09 07:02:42 +00:00
|
|
|
xpcom/windbgdlg/Makefile
|
2006-09-27 20:17:56 +00:00
|
|
|
xpcom/system/Makefile
|
2003-11-03 14:56:14 +00:00
|
|
|
$MAKEFILES_libreg
|
2000-12-27 05:29:50 +00:00
|
|
|
$MAKEFILES_libjar
|
|
|
|
intl/unicharutil/public/Makefile
|
|
|
|
intl/uconv/public/Makefile
|
2001-10-24 00:12:06 +00:00
|
|
|
netwerk/base/public/Makefile
|
2001-12-09 07:02:42 +00:00
|
|
|
netwerk/build/Makefile
|
2000-12-27 05:29:50 +00:00
|
|
|
"
|
2003-08-14 23:50:21 +00:00
|
|
|
MAKEFILES_xpcom_obsolete="
|
|
|
|
xpcom/obsolete/Makefile
|
|
|
|
xpcom/obsolete/component/Makefile
|
|
|
|
"
|
2000-12-27 05:29:50 +00:00
|
|
|
|
|
|
|
MAKEFILES_xpcom_tests="
|
|
|
|
xpcom/tests/Makefile
|
|
|
|
xpcom/tests/dynamic/Makefile
|
|
|
|
xpcom/tests/services/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
xpcom/tests/windows/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
2001-02-22 09:24:57 +00:00
|
|
|
MAKEFILES_string="$MAKEFILES_xpcom"
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_xpinstall="
|
1999-03-25 20:47:28 +00:00
|
|
|
xpinstall/Makefile
|
1999-08-20 02:59:26 +00:00
|
|
|
xpinstall/packager/Makefile
|
2003-10-06 18:47:42 +00:00
|
|
|
xpinstall/packager/unix/Makefile
|
|
|
|
xpinstall/packager/windows/Makefile
|
2005-02-18 17:48:44 +00:00
|
|
|
xpinstall/packager/os2/Makefile
|
1999-03-25 20:47:28 +00:00
|
|
|
xpinstall/public/Makefile
|
1999-06-23 06:22:53 +00:00
|
|
|
xpinstall/res/Makefile
|
1999-03-25 20:47:28 +00:00
|
|
|
xpinstall/src/Makefile
|
2000-01-11 03:46:42 +00:00
|
|
|
xpinstall/stub/Makefile
|
2000-12-28 23:54:54 +00:00
|
|
|
xpinstall/wizard/libxpnet/Makefile
|
|
|
|
xpinstall/wizard/libxpnet/src/Makefile
|
|
|
|
xpinstall/wizard/libxpnet/test/Makefile
|
2000-04-16 22:26:44 +00:00
|
|
|
xpinstall/wizard/unix/src2/Makefile
|
2003-10-06 18:47:42 +00:00
|
|
|
xpinstall/wizard/windows/builder/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
xpinstall/wizard/windows/nsinstall/Makefile
|
|
|
|
xpinstall/wizard/windows/nsztool/Makefile
|
|
|
|
xpinstall/wizard/windows/uninstall/Makefile
|
|
|
|
xpinstall/wizard/windows/setup/Makefile
|
|
|
|
xpinstall/wizard/windows/setuprsc/Makefile
|
|
|
|
xpinstall/wizard/windows/ren8dot3/Makefile
|
|
|
|
xpinstall/wizard/windows/ds32/Makefile
|
|
|
|
xpinstall/wizard/windows/GetShortPathName/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpfe="
|
2005-04-04 19:08:55 +00:00
|
|
|
widget/src/xremoteclient/Makefile
|
|
|
|
toolkit/components/Makefile
|
|
|
|
toolkit/components/remote/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
xpfe/Makefile
|
|
|
|
xpfe/browser/Makefile
|
|
|
|
xpfe/browser/public/Makefile
|
|
|
|
xpfe/browser/src/Makefile
|
1999-04-22 02:45:24 +00:00
|
|
|
xpfe/components/Makefile
|
1999-06-11 06:16:22 +00:00
|
|
|
xpfe/components/bookmarks/Makefile
|
|
|
|
xpfe/components/bookmarks/public/Makefile
|
|
|
|
xpfe/components/bookmarks/src/Makefile
|
2005-06-08 16:48:44 +00:00
|
|
|
xpfe/components/bookmarks/resources/Makefile
|
1999-08-23 04:20:45 +00:00
|
|
|
xpfe/components/directory/Makefile
|
2002-03-17 21:41:01 +00:00
|
|
|
xpfe/components/download-manager/Makefile
|
|
|
|
xpfe/components/download-manager/src/Makefile
|
|
|
|
xpfe/components/download-manager/public/Makefile
|
2005-06-08 16:48:44 +00:00
|
|
|
xpfe/components/download-manager/resources/Makefile
|
|
|
|
xpfe/components/extensions/Makefile
|
|
|
|
xpfe/components/extensions/src/Makefile
|
|
|
|
xpfe/components/extensions/public/Makefile
|
1999-04-22 05:15:27 +00:00
|
|
|
xpfe/components/find/Makefile
|
1999-04-22 02:45:24 +00:00
|
|
|
xpfe/components/find/public/Makefile
|
|
|
|
xpfe/components/find/src/Makefile
|
2000-03-22 10:31:44 +00:00
|
|
|
xpfe/components/filepicker/Makefile
|
2001-11-03 02:10:10 +00:00
|
|
|
xpfe/components/filepicker/public/Makefile
|
|
|
|
xpfe/components/filepicker/src/Makefile
|
1999-05-18 03:40:25 +00:00
|
|
|
xpfe/components/history/Makefile
|
|
|
|
xpfe/components/history/src/Makefile
|
|
|
|
xpfe/components/history/public/Makefile
|
2005-06-08 16:48:44 +00:00
|
|
|
xpfe/components/intl/Makefile
|
1999-06-07 19:22:35 +00:00
|
|
|
xpfe/components/related/Makefile
|
|
|
|
xpfe/components/related/src/Makefile
|
|
|
|
xpfe/components/related/public/Makefile
|
1999-08-19 19:57:10 +00:00
|
|
|
xpfe/components/search/Makefile
|
|
|
|
xpfe/components/search/datasets/Makefile
|
1999-09-15 11:23:43 +00:00
|
|
|
xpfe/components/search/public/Makefile
|
|
|
|
xpfe/components/search/src/Makefile
|
1999-08-03 22:35:39 +00:00
|
|
|
xpfe/components/sidebar/Makefile
|
1999-11-30 00:49:09 +00:00
|
|
|
xpfe/components/sidebar/src/Makefile
|
2004-10-29 19:28:38 +00:00
|
|
|
xpfe/components/startup/Makefile
|
|
|
|
xpfe/components/startup/public/Makefile
|
|
|
|
xpfe/components/startup/src/Makefile
|
2000-04-13 04:49:50 +00:00
|
|
|
xpfe/components/autocomplete/Makefile
|
|
|
|
xpfe/components/autocomplete/public/Makefile
|
|
|
|
xpfe/components/autocomplete/src/Makefile
|
2005-06-08 16:48:44 +00:00
|
|
|
xpfe/components/updates/Makefile
|
|
|
|
xpfe/components/updates/src/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
xpfe/components/urlwidget/Makefile
|
|
|
|
xpfe/components/winhooks/Makefile
|
2005-06-08 16:48:44 +00:00
|
|
|
xpfe/components/windowds/Makefile
|
2002-03-22 22:06:38 +00:00
|
|
|
xpfe/components/alerts/Makefile
|
|
|
|
xpfe/components/alerts/public/Makefile
|
|
|
|
xpfe/components/alerts/src/Makefile
|
2000-04-14 02:47:54 +00:00
|
|
|
xpfe/components/console/Makefile
|
2002-03-01 23:51:21 +00:00
|
|
|
xpfe/components/resetPref/Makefile
|
2002-04-23 02:34:30 +00:00
|
|
|
xpfe/components/killAll/Makefile
|
2001-01-15 23:48:51 +00:00
|
|
|
xpfe/components/build/Makefile
|
2003-07-16 00:33:50 +00:00
|
|
|
xpfe/components/xremote/Makefile
|
|
|
|
xpfe/components/xremote/public/Makefile
|
|
|
|
xpfe/components/xremote/src/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
xpfe/appshell/Makefile
|
|
|
|
xpfe/appshell/src/Makefile
|
|
|
|
xpfe/appshell/public/Makefile
|
|
|
|
xpfe/bootstrap/Makefile
|
2004-02-10 18:21:24 +00:00
|
|
|
xpfe/bootstrap/init.d/Makefile
|
2003-07-16 00:33:50 +00:00
|
|
|
xpfe/bootstrap/appleevents/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
xpfe/browser/Makefile
|
|
|
|
xpfe/browser/src/Makefile
|
1999-07-14 00:48:10 +00:00
|
|
|
xpfe/global/Makefile
|
2003-02-22 05:27:42 +00:00
|
|
|
xpfe/global/buildconfig.html
|
1999-07-14 00:48:10 +00:00
|
|
|
xpfe/global/resources/Makefile
|
1999-07-19 21:42:29 +00:00
|
|
|
xpfe/global/resources/content/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
xpfe/global/resources/content/os2/Makefile
|
1999-09-14 02:13:50 +00:00
|
|
|
xpfe/global/resources/content/unix/Makefile
|
1999-07-20 19:17:11 +00:00
|
|
|
xpfe/global/resources/locale/Makefile
|
2000-02-15 05:18:51 +00:00
|
|
|
xpfe/global/resources/locale/en-US/Makefile
|
2001-03-19 23:10:12 +00:00
|
|
|
xpfe/global/resources/locale/en-US/mac/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
xpfe/global/resources/locale/en-US/os2/Makefile
|
2000-02-15 05:18:51 +00:00
|
|
|
xpfe/global/resources/locale/en-US/unix/Makefile
|
2001-03-19 23:10:12 +00:00
|
|
|
xpfe/global/resources/locale/en-US/win/Makefile
|
2000-04-21 07:15:14 +00:00
|
|
|
xpfe/communicator/Makefile
|
2006-07-31 18:11:38 +00:00
|
|
|
extensions/spellcheck/Makefile
|
|
|
|
extensions/spellcheck/idl/Makefile
|
|
|
|
extensions/spellcheck/locales/Makefile
|
|
|
|
extensions/spellcheck/myspell/Makefile
|
|
|
|
extensions/spellcheck/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
2000-04-21 07:15:14 +00:00
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_embedding="
|
2000-02-01 08:38:48 +00:00
|
|
|
embedding/Makefile
|
2001-01-15 23:48:51 +00:00
|
|
|
embedding/base/Makefile
|
2000-02-01 08:38:48 +00:00
|
|
|
embedding/browser/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
embedding/browser/activex/src/Makefile
|
|
|
|
embedding/browser/activex/src/control/Makefile
|
|
|
|
embedding/browser/activex/src/control_kicker/Makefile
|
2000-02-01 08:38:48 +00:00
|
|
|
embedding/browser/build/Makefile
|
2001-01-15 23:48:51 +00:00
|
|
|
embedding/browser/chrome/Makefile
|
2000-02-01 08:38:48 +00:00
|
|
|
embedding/browser/webBrowser/Makefile
|
2000-03-31 03:58:02 +00:00
|
|
|
embedding/browser/gtk/Makefile
|
|
|
|
embedding/browser/gtk/src/Makefile
|
|
|
|
embedding/browser/gtk/tests/Makefile
|
2004-10-29 16:44:11 +00:00
|
|
|
embedding/browser/qt/Makefile
|
|
|
|
embedding/browser/qt/src/Makefile
|
|
|
|
embedding/browser/qt/tests/Makefile
|
2000-07-12 13:56:39 +00:00
|
|
|
embedding/browser/photon/Makefile
|
|
|
|
embedding/browser/photon/src/Makefile
|
|
|
|
embedding/browser/photon/tests/Makefile
|
2003-04-04 21:24:56 +00:00
|
|
|
embedding/browser/cocoa/Makefile
|
2001-02-07 03:09:15 +00: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 06:35:43 +00:00
|
|
|
embedding/components/ui/Makefile
|
|
|
|
embedding/components/ui/helperAppDlg/Makefile
|
2002-02-20 07:50:02 +00:00
|
|
|
embedding/components/ui/progressDlg/Makefile
|
2000-07-20 01:12:25 +00:00
|
|
|
embedding/config/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
embedding/tests/Makefile
|
2003-04-04 21:24:56 +00:00
|
|
|
embedding/tests/cocoaEmbed/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
embedding/tests/winEmbed/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
2000-02-01 08:38:48 +00:00
|
|
|
|
2003-07-23 04:58:59 +00:00
|
|
|
MAKEFILES_minimo="
|
2005-08-05 00:05:29 +00:00
|
|
|
minimo/Makefile
|
|
|
|
minimo/base/Makefile
|
2005-10-18 18:10:16 +00:00
|
|
|
minimo/base/wince/Makefile
|
2005-08-05 00:05:29 +00: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 04:58:59 +00:00
|
|
|
"
|
|
|
|
|
2001-03-04 22:55:18 +00:00
|
|
|
MAKEFILES_psm2="
|
|
|
|
security/manager/Makefile
|
2001-11-29 23:36:34 +00:00
|
|
|
security/manager/boot/Makefile
|
|
|
|
security/manager/boot/src/Makefile
|
|
|
|
security/manager/boot/public/Makefile
|
2001-03-04 22:55:18 +00: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 02:53:29 +00:00
|
|
|
security/manager/pki/public/Makefile
|
2005-07-28 19:48:12 +00:00
|
|
|
security/manager/locales/Makefile
|
2001-03-04 22:55:18 +00: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
|
|
|
|
"
|
|
|
|
|
2001-04-03 22:41:24 +00:00
|
|
|
MAKEFILES_inspector="
|
2001-07-25 00:56:30 +00:00
|
|
|
extensions/inspector/Makefile
|
2001-04-03 22:41:24 +00:00
|
|
|
extensions/inspector/base/Makefile
|
|
|
|
extensions/inspector/build/Makefile
|
|
|
|
extensions/inspector/resources/Makefile
|
2005-07-22 16:39:42 +00:00
|
|
|
extensions/inspector/resources/locale/Makefile
|
2001-04-03 22:41:24 +00:00
|
|
|
"
|
|
|
|
|
2005-05-13 19:47:56 +00:00
|
|
|
MAKEFILES_spatialnavigation="
|
|
|
|
extensions/spatialnavigation/Makefile
|
|
|
|
extensions/spatialnavigation/public/Makefile
|
|
|
|
extensions/spatialnavigation/src/Makefile
|
|
|
|
"
|
|
|
|
|
2004-05-24 17:13:05 +00:00
|
|
|
MAKEFILES_sroaming="
|
|
|
|
extensions/sroaming/Makefile
|
|
|
|
extensions/sroaming/src/Makefile
|
|
|
|
"
|
|
|
|
|
2003-01-10 04:16:03 +00:00
|
|
|
MAKEFILES_tridentprofile="
|
|
|
|
extensions/tridentprofile/Makefile
|
|
|
|
extensions/tridentprofile/public/Makefile
|
2003-01-22 04:15:29 +00:00
|
|
|
extensions/tridentprofile/resources/Makefile
|
2003-01-10 04:16:03 +00:00
|
|
|
extensions/tridentprofile/src/Makefile
|
|
|
|
"
|
|
|
|
|
2002-08-19 19:29:39 +00:00
|
|
|
MAKEFILES_typeaheadfind="
|
|
|
|
extensions/typeaheadfind/public/Makefile
|
|
|
|
extensions/typeaheadfind/resources/Makefile
|
|
|
|
extensions/typeaheadfind/src/Makefile
|
|
|
|
extensions/typeaheadfind/Makefile
|
|
|
|
"
|
|
|
|
|
2006-02-03 00:32:50 +00:00
|
|
|
MAKEFILES_metrics="
|
|
|
|
extensions/metrics/Makefile
|
2006-06-02 06:06:54 +00:00
|
|
|
extensions/metrics/build/Makefile
|
2006-05-02 17:58:33 +00:00
|
|
|
extensions/metrics/public/Makefile
|
2006-02-03 00:32:50 +00:00
|
|
|
extensions/metrics/src/Makefile
|
2006-05-02 17:58:33 +00:00
|
|
|
extensions/metrics/test/Makefile
|
2006-02-03 00:32:50 +00:00
|
|
|
"
|
|
|
|
|
2002-08-07 06:37:13 +00:00
|
|
|
MAKEFILES_phoenix="
|
|
|
|
browser/Makefile
|
2002-09-28 21:28:40 +00:00
|
|
|
browser/app/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
browser/app/profile/extensions/Makefile
|
2002-08-07 06:37:13 +00:00
|
|
|
browser/base/Makefile
|
|
|
|
browser/components/Makefile
|
2002-09-28 21:28:40 +00:00
|
|
|
browser/components/bookmarks/Makefile
|
2003-04-15 04:21:24 +00:00
|
|
|
browser/components/bookmarks/public/Makefile
|
|
|
|
browser/components/bookmarks/src/Makefile
|
2002-09-28 21:28:40 +00:00
|
|
|
browser/components/build/Makefile
|
2005-06-07 19:55:49 +00:00
|
|
|
browser/components/dirprovider/Makefile
|
2003-07-19 20:59:37 +00:00
|
|
|
browser/components/history/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
browser/components/migration/Makefile
|
|
|
|
browser/components/migration/public/Makefile
|
|
|
|
browser/components/migration/src/Makefile
|
2006-07-18 19:41:12 +00:00
|
|
|
browser/components/places/Makefile
|
2005-03-01 21:27:19 +00:00
|
|
|
browser/components/preferences/Makefile
|
2006-03-17 07:16:00 +00:00
|
|
|
browser/components/search/Makefile
|
2003-08-09 05:04:05 +00:00
|
|
|
browser/components/sidebar/Makefile
|
|
|
|
browser/components/sidebar/src/Makefile
|
2004-03-08 09:59:57 +00:00
|
|
|
browser/components/shell/Makefile
|
|
|
|
browser/components/shell/public/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
browser/components/shell/src/Makefile
|
2004-03-11 23:18:19 +00:00
|
|
|
browser/installer/Makefile
|
2004-04-08 04:43:23 +00:00
|
|
|
browser/installer/unix/Makefile
|
2004-03-11 23:18:19 +00:00
|
|
|
browser/installer/windows/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
browser/locales/Makefile
|
|
|
|
browser/themes/Makefile
|
|
|
|
browser/themes/pinstripe/browser/Makefile
|
|
|
|
browser/themes/pinstripe/Makefile
|
|
|
|
browser/themes/winstripe/browser/Makefile
|
|
|
|
browser/themes/winstripe/Makefile
|
2003-04-17 06:14:23 +00:00
|
|
|
"
|
|
|
|
|
2005-04-17 10:06:09 +00:00
|
|
|
MAKEFILES_suite="
|
|
|
|
suite/Makefile
|
2006-03-17 14:16:34 +00:00
|
|
|
suite/app/Makefile
|
2005-07-20 20:56:32 +00:00
|
|
|
suite/branding/Makefile
|
2006-05-17 11:43:42 +00:00
|
|
|
suite/browser/Makefile
|
2006-07-05 17:37:34 +00:00
|
|
|
suite/build/Makefile
|
2006-04-08 11:17:06 +00:00
|
|
|
suite/common/Makefile
|
2005-06-21 16:01:09 +00:00
|
|
|
suite/components/Makefile
|
|
|
|
suite/components/xulappinfo/Makefile
|
2006-04-08 11:17:06 +00:00
|
|
|
suite/locales/Makefile
|
2006-05-17 08:20:23 +00:00
|
|
|
suite/profile/Makefile
|
2006-12-02 15:40:33 +00:00
|
|
|
suite/profile/migration/Makefile
|
|
|
|
suite/profile/migration/public/Makefile
|
|
|
|
suite/profile/migration/src/Makefile
|
2005-04-17 10:06:09 +00:00
|
|
|
"
|
|
|
|
|
2004-09-09 19:10:39 +00: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 04:14:27 +00:00
|
|
|
xulrunner/installer/Makefile
|
2006-08-18 21:03:38 +00:00
|
|
|
xulrunner/installer/mac/Makefile
|
2004-09-09 19:10:39 +00:00
|
|
|
"
|
|
|
|
|
2003-04-17 06:14:23 +00:00
|
|
|
MAKEFILES_xulapp="
|
2002-08-07 06:37:13 +00:00
|
|
|
toolkit/Makefile
|
2004-12-06 22:39:54 +00:00
|
|
|
toolkit/library/Makefile
|
2003-11-15 07:43:50 +00:00
|
|
|
toolkit/content/Makefile
|
2003-08-11 14:51:44 +00:00
|
|
|
toolkit/content/buildconfig.html
|
2003-11-15 07:43:50 +00:00
|
|
|
toolkit/obsolete/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
toolkit/components/alerts/Makefile
|
|
|
|
toolkit/components/alerts/public/Makefile
|
|
|
|
toolkit/components/alerts/src/Makefile
|
2002-09-28 21:28:40 +00:00
|
|
|
toolkit/components/autocomplete/Makefile
|
|
|
|
toolkit/components/autocomplete/public/Makefile
|
|
|
|
toolkit/components/autocomplete/src/Makefile
|
2003-07-19 20:26:12 +00:00
|
|
|
toolkit/components/Makefile
|
2002-09-28 21:28:40 +00:00
|
|
|
toolkit/components/build/Makefile
|
2005-01-17 18:50:18 +00:00
|
|
|
toolkit/components/commandlines/Makefile
|
|
|
|
toolkit/components/commandlines/public/Makefile
|
|
|
|
toolkit/components/commandlines/src/Makefile
|
2003-07-19 20:26:12 +00:00
|
|
|
toolkit/components/console/Makefile
|
2005-03-10 18:36:07 +00:00
|
|
|
toolkit/components/cookie/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
toolkit/components/downloads/public/Makefile
|
|
|
|
toolkit/components/downloads/Makefile
|
|
|
|
toolkit/components/downloads/src/Makefile
|
2003-07-19 20:26:12 +00:00
|
|
|
toolkit/components/filepicker/Makefile
|
2006-09-27 20:17:56 +00:00
|
|
|
toolkit/system/gnome/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
toolkit/components/help/Makefile
|
2003-07-19 20:26:12 +00:00
|
|
|
toolkit/components/history/Makefile
|
|
|
|
toolkit/components/history/public/Makefile
|
|
|
|
toolkit/components/history/src/Makefile
|
2003-07-31 05:05:03 +00:00
|
|
|
toolkit/components/passwordmgr/Makefile
|
|
|
|
toolkit/components/passwordmgr/base/Makefile
|
|
|
|
toolkit/components/passwordmgr/resources/Makefile
|
2007-04-22 23:56:06 +00:00
|
|
|
toolkit/components/passwordmgr/test/Makefile
|
2006-07-18 19:41:12 +00:00
|
|
|
toolkit/components/places/Makefile
|
|
|
|
toolkit/components/places/public/Makefile
|
|
|
|
toolkit/components/places/src/Makefile
|
2003-08-16 11:22:16 +00:00
|
|
|
toolkit/components/printing/Makefile
|
2002-09-28 21:28:40 +00:00
|
|
|
toolkit/components/satchel/Makefile
|
|
|
|
toolkit/components/satchel/public/Makefile
|
|
|
|
toolkit/components/satchel/src/Makefile
|
2004-10-29 19:28:38 +00:00
|
|
|
toolkit/components/startup/Makefile
|
|
|
|
toolkit/components/startup/public/Makefile
|
|
|
|
toolkit/components/startup/src/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
toolkit/components/typeaheadfind/Makefile
|
|
|
|
toolkit/components/typeaheadfind/public/Makefile
|
|
|
|
toolkit/components/typeaheadfind/src/Makefile
|
2003-08-16 11:22:16 +00:00
|
|
|
toolkit/components/viewconfig/Makefile
|
2003-07-19 20:26:12 +00:00
|
|
|
toolkit/components/viewsource/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
toolkit/locales/Makefile
|
2003-11-07 22:44:35 +00:00
|
|
|
toolkit/mozapps/Makefile
|
2004-12-02 06:42:04 +00:00
|
|
|
toolkit/mozapps/downloads/content/Makefile
|
2003-11-07 22:44:35 +00:00
|
|
|
toolkit/mozapps/downloads/Makefile
|
2004-12-02 06:42:04 +00: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 17:24:57 +00:00
|
|
|
toolkit/themes/pmstripe/global/Makefile
|
|
|
|
toolkit/themes/pmstripe/Makefile
|
2004-12-02 06:42:04 +00: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 07:57:54 +00:00
|
|
|
toolkit/xre/Makefile
|
2002-08-07 06:37:13 +00:00
|
|
|
"
|
|
|
|
|
2003-11-07 21:29:40 +00:00
|
|
|
|
2003-04-17 06:14:23 +00:00
|
|
|
MAKEFILES_thunderbird="
|
2002-08-16 04:10:13 +00:00
|
|
|
mail/Makefile
|
2003-04-17 06:14:23 +00:00
|
|
|
mail/app/Makefile
|
|
|
|
mail/app/profile/Makefile
|
2002-08-16 04:10:13 +00:00
|
|
|
mail/base/Makefile
|
2004-09-23 03:03:34 +00:00
|
|
|
mail/locales/Makefile
|
2002-08-18 18:58:25 +00:00
|
|
|
mail/components/Makefile
|
|
|
|
mail/components/compose/Makefile
|
2003-04-17 06:14:23 +00:00
|
|
|
mail/components/addrbook/Makefile
|
2005-03-07 18:34:31 +00:00
|
|
|
mail/components/preferences/Makefile
|
2004-07-24 23:54:29 +00:00
|
|
|
mail/components/build/Makefile
|
2005-07-18 22:33:50 +00:00
|
|
|
mail/components/shell/Makefile
|
2006-10-02 23:10:46 +00:00
|
|
|
mail/components/shell/public/Makefile
|
2006-12-01 06:47:15 +00:00
|
|
|
mail/components/phishing/Makefile
|
2003-04-17 06:14:23 +00:00
|
|
|
mail/extensions/Makefile
|
|
|
|
mail/extensions/smime/Makefile
|
2003-11-03 14:44:04 +00:00
|
|
|
mail/config/Makefile
|
2004-04-26 23:28:49 +00:00
|
|
|
mail/installer/Makefile
|
2004-04-19 05:18:00 +00:00
|
|
|
mail/installer/windows/Makefile
|
2005-03-11 19:39:45 +00:00
|
|
|
mail/themes/Makefile
|
|
|
|
mail/themes/pinstripe/mail/Makefile
|
2005-03-11 21:40:56 +00:00
|
|
|
mail/themes/pinstripe/editor/Makefile
|
2005-03-11 19:39:45 +00:00
|
|
|
mail/themes/pinstripe/Makefile
|
|
|
|
mail/themes/qute/mail/Makefile
|
|
|
|
mail/themes/qute/editor/Makefile
|
|
|
|
mail/themes/qute/Makefile
|
2002-08-16 04:10:13 +00:00
|
|
|
"
|
|
|
|
|
2003-09-24 13:59:37 +00:00
|
|
|
MAKEFILES_standalone_composer="
|
|
|
|
composer/Makefile
|
|
|
|
composer/app/Makefile
|
|
|
|
composer/app/profile/Makefile
|
|
|
|
composer/base/Makefile
|
|
|
|
xpfe/components/build2/Makefile
|
|
|
|
"
|
|
|
|
|
2005-02-08 21:19:38 +00: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 19:36:45 +00: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 18:06:03 +00:00
|
|
|
"
|
|
|
|
|
2005-02-08 21:19:38 +00:00
|
|
|
MAKEFILES_sunbird="
|
2006-06-09 01:59:48 +00:00
|
|
|
calendar/installer/Makefile
|
|
|
|
calendar/installer/windows/Makefile
|
2006-06-07 20:47:11 +00:00
|
|
|
calendar/locales/Makefile
|
2005-02-08 21:19:38 +00:00
|
|
|
calendar/sunbird/Makefile
|
|
|
|
calendar/sunbird/app/Makefile
|
|
|
|
calendar/sunbird/base/Makefile
|
|
|
|
"
|
|
|
|
|
2004-11-23 22:22:58 +00:00
|
|
|
MAKEFILES_macbrowser="
|
|
|
|
camino/Makefile
|
2007-02-21 20:24:55 +00:00
|
|
|
camino/flashblock/Makefile
|
2005-08-18 13:11:46 +00:00
|
|
|
camino/installer/Makefile
|
2004-11-23 22:22:58 +00:00
|
|
|
"
|
|
|
|
|
2003-01-18 19:15:34 +00:00
|
|
|
MAKEFILES_sql="
|
|
|
|
extensions/sql/Makefile
|
|
|
|
extensions/sql/base/Makefile
|
|
|
|
extensions/sql/base/public/Makefile
|
|
|
|
extensions/sql/base/src/Makefile
|
|
|
|
extensions/sql/base/resources/Makefile
|
|
|
|
extensions/sql/pgsql/public/Makefile
|
|
|
|
extensions/sql/pgsql/src/Makefile
|
2006-06-06 08:09:26 +00:00
|
|
|
extensions/sql/odbc/Makefile
|
|
|
|
extensions/sql/odbc/public/Makefile
|
|
|
|
extensions/sql/odbc/src/Makefile
|
2003-01-18 19:15:34 +00:00
|
|
|
extensions/sql/build/Makefile
|
|
|
|
extensions/sql/build/src/Makefile
|
2003-07-07 19:54:56 +00:00
|
|
|
extensions/sql/sqltest/Makefile
|
2003-01-18 19:15:34 +00:00
|
|
|
extensions/sql/tests/Makefile
|
|
|
|
"
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
if [ "$MOZ_MAIL_NEWS" ]; then
|
2000-12-27 05:29:50 +00:00
|
|
|
if [ -f ${srcdir}/mailnews/makefiles ]; then
|
|
|
|
MAKEFILES_mailnews=`cat ${srcdir}/mailnews/makefiles`
|
|
|
|
fi
|
2000-05-20 02:45:59 +00:00
|
|
|
fi
|
|
|
|
|
2003-05-02 03:57:15 +00: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-19 23:26:47 +00:00
|
|
|
|
|
|
|
MAKEFILES_libpr0n="
|
|
|
|
modules/libpr0n/Makefile
|
2006-04-10 18:44:31 +00:00
|
|
|
modules/libpr0n/build/Makefile
|
2001-03-19 23:26:47 +00: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 07:10:51 +00:00
|
|
|
modules/libpr0n/decoders/bmp/Makefile
|
2001-12-18 09:14:29 +00:00
|
|
|
modules/libpr0n/decoders/icon/Makefile
|
|
|
|
modules/libpr0n/decoders/icon/win/Makefile
|
2004-05-18 19:00:56 +00:00
|
|
|
modules/libpr0n/decoders/icon/gtk/Makefile
|
2006-01-28 14:25:18 +00:00
|
|
|
modules/libpr0n/decoders/icon/beos/Makefile
|
2002-06-11 22:33:13 +00:00
|
|
|
modules/libpr0n/decoders/xbm/Makefile
|
2005-08-31 22:15:33 +00:00
|
|
|
modules/libpr0n/encoders/Makefile
|
|
|
|
modules/libpr0n/encoders/png/Makefile
|
2005-11-15 18:29:23 +00:00
|
|
|
modules/libpr0n/encoders/jpeg/Makefile
|
2001-03-19 23:26:47 +00:00
|
|
|
"
|
|
|
|
|
2001-03-28 22:16:03 +00:00
|
|
|
MAKEFILES_accessible="
|
|
|
|
accessible/Makefile
|
|
|
|
accessible/public/Makefile
|
2003-04-01 20:02:51 +00:00
|
|
|
accessible/public/msaa/Makefile
|
2001-03-28 22:16:03 +00:00
|
|
|
accessible/src/Makefile
|
2001-12-15 23:50:14 +00:00
|
|
|
accessible/src/base/Makefile
|
|
|
|
accessible/src/html/Makefile
|
|
|
|
accessible/src/xul/Makefile
|
2003-04-01 20:02:51 +00:00
|
|
|
accessible/src/msaa/Makefile
|
|
|
|
accessible/src/atk/Makefile
|
|
|
|
accessible/src/mac/Makefile
|
2001-03-28 22:16:03 +00:00
|
|
|
accessible/build/Makefile
|
|
|
|
"
|
2003-04-01 20:02:51 +00:00
|
|
|
|
2000-05-20 02:45:59 +00: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 00:54:38 +00:00
|
|
|
MAKEFILES_zlib="
|
|
|
|
$MAKEFILES_zlib
|
|
|
|
modules/zlib/standalone/Makefile
|
|
|
|
"
|
|
|
|
|
2005-06-08 18:04:25 +00:00
|
|
|
MAKEFILES_libbz2="
|
|
|
|
modules/libbz2/Makefile
|
|
|
|
modules/libbz2/src/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libmar="
|
|
|
|
modules/libmar/Makefile
|
|
|
|
modules/libmar/src/Makefile
|
2005-06-17 22:59:13 +00:00
|
|
|
modules/libmar/tool/Makefile
|
2005-06-08 18:04:25 +00:00
|
|
|
"
|
2001-03-10 00:54:38 +00:00
|
|
|
|
2005-06-17 22:59:13 +00:00
|
|
|
if test -n "$MOZ_UPDATE_PACKAGING"; then
|
2006-04-06 16:51:10 +00:00
|
|
|
MAKEFILES_update_packaging="
|
|
|
|
tools/update-packaging/Makefile
|
|
|
|
other-licenses/bsdiff/Makefile
|
|
|
|
"
|
2005-06-17 22:59:13 +00:00
|
|
|
fi
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
if [ ! "$SYSTEM_PNG" ]; then
|
|
|
|
MAKEFILES_libimg="$MAKEFILES_libimg modules/libimg/png/Makefile"
|
|
|
|
fi
|
2000-05-08 21:35:40 +00:00
|
|
|
|
2004-07-15 22:51:19 +00:00
|
|
|
MAKEFILES_gnome="
|
|
|
|
toolkit/Makefile
|
2006-09-27 20:17:56 +00:00
|
|
|
toolkit/system/gnome/Makefile
|
2004-07-15 22:51:19 +00:00
|
|
|
"
|
|
|
|
|
1999-10-08 01:32:44 +00:00
|
|
|
#
|
|
|
|
# l10n/
|
|
|
|
#
|
2000-12-27 05:29:50 +00:00
|
|
|
if [ -f ${srcdir}/l10n/makefiles.all ]; then
|
|
|
|
MAKEFILES_langpacks=`cat ${srcdir}/l10n/makefiles.all`
|
|
|
|
fi
|
2000-06-24 21:48:17 +00:00
|
|
|
|
1999-10-08 01:32:44 +00:00
|
|
|
if [ "$MOZ_L10N" ]; then
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_l10n="l10n/Makefile"
|
|
|
|
|
|
|
|
if [ "$MOZ_L10N_LANG" ]; then
|
|
|
|
MAKEFILES_l10n_lang="
|
1999-10-08 01:32:44 +00: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 02:45:59 +00:00
|
|
|
"
|
1999-10-08 01:32:44 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2000-01-18 02:45:07 +00:00
|
|
|
# tools/jprof
|
|
|
|
if [ "$MOZ_JPROF" ]; then
|
2001-06-29 22:45:45 +00:00
|
|
|
MAKEFILES_jprof="tools/jprof/Makefile
|
|
|
|
tools/jprof/stub/Makefile"
|
2000-01-18 02:45:07 +00:00
|
|
|
fi
|
|
|
|
|
1999-09-25 20:44:48 +00:00
|
|
|
# tools/leaky
|
|
|
|
if [ "$MOZ_LEAKY" ]; then
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_leaky="tools/leaky/Makefile"
|
1999-09-25 20:44:48 +00:00
|
|
|
fi
|
1999-10-13 00:46:09 +00:00
|
|
|
|
2001-09-08 18:29:24 +00:00
|
|
|
# tools/trace-malloc
|
|
|
|
if [ "$NS_TRACE_MALLOC" ]; then
|
2003-01-15 20:40:06 +00:00
|
|
|
MAKEFILES_tracemalloc="tools/trace-malloc/Makefile tools/trace-malloc/lib/Makefile"
|
2001-09-08 18:29:24 +00:00
|
|
|
fi
|
|
|
|
|
2002-10-08 21:40:10 +00:00
|
|
|
# tools/codesighs
|
|
|
|
if [ "$MOZ_MAPINFO" ]; then
|
|
|
|
MAKEFILES_codesighs="tools/codesighs/Makefile"
|
|
|
|
fi
|
|
|
|
|
2002-02-14 01:33:17 +00:00
|
|
|
# MathML
|
1999-10-13 00:46:09 +00:00
|
|
|
if [ "$MOZ_MATHML" ]; then
|
2002-02-14 01:33:17 +00:00
|
|
|
MAKEFILES_intl="$MAKEFILES_intl
|
|
|
|
intl/uconv/ucvmath/Makefile
|
|
|
|
"
|
2000-05-20 02:45:59 +00: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 00:46:09 +00:00
|
|
|
fi
|
1999-11-09 23:30:32 +00:00
|
|
|
|
2001-12-12 07:59:31 +00:00
|
|
|
# svg
|
2000-05-05 04:32:50 +00:00
|
|
|
if [ "$MOZ_SVG" ]; then
|
2001-12-12 07:59:31 +00: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 02:45:59 +00:00
|
|
|
MAKEFILES_layout="$MAKEFILES_layout
|
|
|
|
layout/svg/Makefile
|
|
|
|
layout/svg/base/Makefile
|
|
|
|
layout/svg/base/src/Makefile
|
|
|
|
"
|
2000-05-05 04:32:50 +00:00
|
|
|
fi
|
|
|
|
|
2004-10-07 20:59:53 +00: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 17:20:37 +00: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 14:13:01 +00: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 14:17:20 +00: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 06:58:37 +00:00
|
|
|
# directory/xpcom
|
|
|
|
if [ "$MOZ_LDAP_XPCOM" ]; then
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_ldap="
|
|
|
|
directory/xpcom/Makefile
|
|
|
|
directory/xpcom/base/Makefile
|
|
|
|
directory/xpcom/base/public/Makefile
|
|
|
|
directory/xpcom/base/src/Makefile
|
|
|
|
"
|
2000-05-09 06:58:37 +00:00
|
|
|
fi
|
|
|
|
|
2003-06-09 22:25:25 +00:00
|
|
|
# embedding/componentlib
|
|
|
|
|
|
|
|
if [ "$MOZ_COMPONENTLIB" ]; then
|
|
|
|
MAKEFILES_static_components="$MAKEFILE_static_components
|
|
|
|
embedding/componentlib/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2000-11-21 23:40:34 +00:00
|
|
|
# modules/staticmod
|
|
|
|
|
2001-11-14 03:50:32 +00:00
|
|
|
if [ "$MOZ_STATIC_COMPONENTS" -o "$MOZ_META_COMPONENTS" ]; then
|
2000-11-21 23:40:34 +00:00
|
|
|
MAKEFILES_static_components="$MAKEFILES_static_components
|
2001-03-20 05:42:58 +00:00
|
|
|
modules/staticmod/Makefile
|
2000-11-21 23:40:34 +00:00
|
|
|
"
|
|
|
|
fi
|
2003-06-09 22:25:25 +00:00
|
|
|
fi
|
2000-11-21 23:40:34 +00:00
|
|
|
|
2005-12-15 17:50:47 +00:00
|
|
|
if [ "$MOZ_PREF_EXTENSIONS" ]; then
|
|
|
|
MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/pref/Makefile
|
|
|
|
extensions/pref/autoconfig/Makefile
|
|
|
|
extensions/pref/autoconfig/public/Makefile
|
|
|
|
extensions/pref/autoconfig/src/Makefile
|
|
|
|
extensions/pref/autoconfig/resources/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2000-05-24 22:54:58 +00:00
|
|
|
for extension in $MOZ_EXTENSIONS; do
|
2000-05-20 02:45:59 +00:00
|
|
|
case "$extension" in
|
2001-08-18 01:14:23 +00:00
|
|
|
access-builtin ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/access-builtin/Makefile
|
|
|
|
extensions/access-builtin/accessproxy/Makefile
|
|
|
|
" ;;
|
2000-05-20 02:45:59 +00:00
|
|
|
cookie ) MAKEFILES_extensions="$MAKEFILES_extensions
|
2001-08-18 01:14:23 +00:00
|
|
|
extensions/cookie/Makefile
|
|
|
|
" ;;
|
|
|
|
cview ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/cview/Makefile
|
|
|
|
extensions/cview/resources/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
" ;;
|
2002-09-03 02:14:42 +00:00
|
|
|
datetime ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/datetime/Makefile
|
|
|
|
" ;;
|
|
|
|
finger ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/finger/Makefile
|
|
|
|
" ;;
|
2004-02-28 00:05:58 +00:00
|
|
|
gnomevfs ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/gnomevfs/Makefile
|
|
|
|
" ;;
|
2001-08-18 01:14:23 +00:00
|
|
|
help ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/help/Makefile
|
|
|
|
extensions/help/resources/Makefile
|
|
|
|
" ;;
|
|
|
|
inspector ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_inspector"
|
|
|
|
;;
|
2005-05-13 19:47:56 +00:00
|
|
|
spatialnavigation ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_spatialnavigation"
|
|
|
|
;;
|
2002-08-19 19:29:39 +00:00
|
|
|
typeaheadfind ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_typeaheadfind"
|
|
|
|
;;
|
2000-05-20 02:45:59 +00:00
|
|
|
irc ) MAKEFILES_extensions="$MAKEFILES_extensions
|
2001-08-18 01:14:23 +00:00
|
|
|
extensions/irc/Makefile
|
|
|
|
" ;;
|
2003-07-24 12:44:24 +00:00
|
|
|
layout-debug ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/layout-debug/Makefile
|
|
|
|
extensions/layout-debug/src/Makefile
|
|
|
|
extensions/layout-debug/ui/Makefile
|
|
|
|
" ;;
|
2001-08-18 01:14:23 +00:00
|
|
|
p3p ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/p3p/Makefile
|
|
|
|
extensions/p3p/public/Makefile
|
|
|
|
extensions/p3p/src/Makefile
|
|
|
|
" ;;
|
2005-04-01 03:02:31 +00:00
|
|
|
reporter ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/reporter/Makefile
|
2005-07-28 19:48:12 +00:00
|
|
|
extensions/reporter/locales/Makefile
|
2005-04-01 03:02:31 +00:00
|
|
|
" ;;
|
2006-03-07 18:36:56 +00:00
|
|
|
|
2003-12-11 23:30:38 +00:00
|
|
|
tasks ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/tasks/Makefile
|
|
|
|
" ;;
|
2004-05-24 17:13:05 +00:00
|
|
|
sroaming ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_sroaming"
|
|
|
|
;;
|
2001-08-18 01:14:23 +00:00
|
|
|
transformiix ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_transformiix"
|
|
|
|
;;
|
2003-01-10 04:16:03 +00:00
|
|
|
tridentprofile ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_tridentprofile"
|
|
|
|
;;
|
2001-05-15 20:48:23 +00:00
|
|
|
venkman ) MAKEFILES_extensions="$MAKEFILES_extensions
|
2003-04-04 21:08:02 +00:00
|
|
|
extensions/venkman/Makefile
|
2003-10-18 17:54:07 +00:00
|
|
|
extensions/venkman/resources/Makefile
|
|
|
|
" ;;
|
2001-08-18 01:14:23 +00:00
|
|
|
wallet ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/wallet/Makefile
|
|
|
|
extensions/wallet/public/Makefile
|
|
|
|
extensions/wallet/src/Makefile
|
|
|
|
extensions/wallet/editor/Makefile
|
|
|
|
extensions/wallet/signonviewer/Makefile
|
|
|
|
extensions/wallet/walletpreview/Makefile
|
|
|
|
extensions/wallet/build/Makefile
|
2001-02-16 04:03:58 +00:00
|
|
|
" ;;
|
2005-01-25 04:57:39 +00:00
|
|
|
xforms ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/xforms/Makefile
|
|
|
|
" ;;
|
2000-05-20 02:45:59 +00:00
|
|
|
xml-rpc ) MAKEFILES_extensions="$MAKEFILES_extensions
|
2001-08-18 01:14:23 +00:00
|
|
|
extensions/xml-rpc/Makefile
|
|
|
|
extensions/xml-rpc/idl/Makefile
|
|
|
|
extensions/xml-rpc/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
" ;;
|
2001-08-18 01:14:23 +00:00
|
|
|
xmlterm ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/xmlterm/Makefile
|
|
|
|
extensions/xmlterm/base/Makefile
|
|
|
|
extensions/xmlterm/geckoterm/Makefile
|
|
|
|
extensions/xmlterm/linetest/Makefile
|
|
|
|
extensions/xmlterm/scripts/Makefile
|
|
|
|
extensions/xmlterm/tests/Makefile
|
|
|
|
extensions/xmlterm/ui/Makefile
|
2001-04-16 23:54:25 +00:00
|
|
|
" ;;
|
2006-03-28 10:57:18 +00:00
|
|
|
python ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/python/Makefile
|
|
|
|
" ;;
|
2005-06-17 21:03:43 +00:00
|
|
|
python/xpcom ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/python/xpcom/Makefile
|
2006-02-17 11:58:37 +00:00
|
|
|
extensions/python/xpcom/components/Makefile
|
2005-06-17 21:03:43 +00:00
|
|
|
extensions/python/xpcom/src/Makefile
|
|
|
|
extensions/python/xpcom/src/loader/Makefile
|
2006-01-20 05:51:50 +00:00
|
|
|
extensions/python/xpcom/src/module/Makefile
|
|
|
|
extensions/python/xpcom/test/Makefile
|
2005-06-17 21:03:43 +00:00
|
|
|
extensions/python/xpcom/test/test_component/Makefile
|
|
|
|
" ;;
|
2006-06-13 03:07:47 +00:00
|
|
|
python/dom ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/python/dom/Makefile
|
|
|
|
extensions/python/dom/test/Makefile
|
|
|
|
extensions/python/dom/test/pyxultest/Makefile
|
|
|
|
extensions/python/dom/src/Makefile
|
|
|
|
extensions/python/dom/nsdom/Makefile
|
|
|
|
extensions/python/dom/nsdom/test/Makefile
|
|
|
|
" ;;
|
2003-01-18 19:15:34 +00:00
|
|
|
sql ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_sql"
|
|
|
|
;;
|
2004-12-10 15:11:31 +00:00
|
|
|
schema-validation ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/schema-validation/Makefile
|
|
|
|
extensions/schema-validation/public/Makefile
|
|
|
|
extensions/schema-validation/src/Makefile
|
|
|
|
" ;;
|
2004-12-15 18:31:23 +00:00
|
|
|
permissions ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/permissions/Makefile
|
|
|
|
" ;;
|
2000-05-20 02:45:59 +00:00
|
|
|
esac
|
|
|
|
done
|
1999-11-09 23:30:32 +00:00
|
|
|
|
2000-06-14 06:46:51 +00:00
|
|
|
MAKEFILES_themes=`cat ${srcdir}/themes/makefiles`
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
add_makefiles "
|
|
|
|
$MAKEFILES_caps
|
2005-06-08 16:48:44 +00:00
|
|
|
$MAKEFILES_chrome
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_db
|
|
|
|
$MAKEFILES_docshell
|
|
|
|
$MAKEFILES_dom
|
|
|
|
$MAKEFILES_editor
|
2002-10-08 21:40:10 +00:00
|
|
|
$MAKEFILES_codesighs
|
2002-10-01 00:16:51 +00:00
|
|
|
$MAKEFILES_composer
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_embedding
|
|
|
|
$MAKEFILES_expat
|
|
|
|
$MAKEFILES_extensions
|
2001-02-18 16:51:46 +00:00
|
|
|
$MAKEFILES_gc
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_gfx
|
2001-03-28 22:16:03 +00:00
|
|
|
$MAKEFILES_accessible
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_htmlparser
|
|
|
|
$MAKEFILES_intl
|
2005-12-15 14:17:20 +00:00
|
|
|
$MAKEFILES_javaxpcom
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_ldap
|
|
|
|
$MAKEFILES_leaky
|
|
|
|
$MAKEFILES_jpeg
|
|
|
|
$MAKEFILES_jprof
|
|
|
|
$MAKEFILES_js
|
2001-05-15 20:48:23 +00:00
|
|
|
$MAKEFILES_jsdebugger
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_l10n
|
|
|
|
$MAKEFILES_l10n_lang
|
2000-06-27 00:24:48 +00:00
|
|
|
$MAKEFILES_langpacks
|
2001-02-19 21:50:04 +00:00
|
|
|
$MAKEFILES_content
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_layout
|
2001-12-12 07:59:31 +00:00
|
|
|
$MAKEFILES_libart
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_libreg
|
|
|
|
$MAKEFILES_libimg
|
2001-03-19 23:26:47 +00:00
|
|
|
$MAKEFILES_libpr0n
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_libjar
|
|
|
|
$MAKEFILES_libpref
|
|
|
|
$MAKEFILES_libutil
|
|
|
|
$MAKEFILES_liveconnect
|
2001-11-27 19:27:46 +00:00
|
|
|
$MAKEFILES_macmorefiles
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_mailnews
|
|
|
|
$MAKEFILES_oji
|
|
|
|
$MAKEFILES_plugin
|
|
|
|
$MAKEFILES_netwerk
|
|
|
|
$MAKEFILES_profile
|
|
|
|
$MAKEFILES_rdf
|
2001-03-20 05:42:58 +00:00
|
|
|
$MAKEFILES_static_components
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_sun_java
|
|
|
|
$MAKEFILES_themes
|
2001-09-08 18:29:24 +00:00
|
|
|
$MAKEFILES_tracemalloc
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_uriloader
|
|
|
|
$MAKEFILES_view
|
|
|
|
$MAKEFILES_webshell
|
|
|
|
$MAKEFILES_widget
|
2002-02-26 17:28:48 +00:00
|
|
|
$MAKEFILES_xft
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_xpcom
|
2003-08-14 23:50:21 +00:00
|
|
|
$MAKEFILES_xpcom_obsolete
|
2000-12-27 05:29:50 +00:00
|
|
|
$MAKEFILES_xpcom_tests
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_xpconnect
|
|
|
|
$MAKEFILES_xpinstall
|
|
|
|
$MAKEFILES_xpfe
|
|
|
|
$MAKEFILES_zlib
|
2005-06-08 18:04:25 +00:00
|
|
|
$MAKEFILES_libbz2
|
|
|
|
$MAKEFILES_libmar
|
2005-06-17 22:59:13 +00:00
|
|
|
$MAKEFILES_update_packaging
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
2000-03-01 02:38:38 +00:00
|
|
|
|
2001-05-10 03:00:37 +00:00
|
|
|
if test -n "$MOZ_PSM"; then
|
|
|
|
add_makefiles "$MAKEFILES_psm2"
|
|
|
|
fi
|
|
|
|
|
2001-11-13 07:57:31 +00:00
|
|
|
if test -n "$MOZ_CALENDAR"; then
|
|
|
|
add_makefiles "$MAKEFILES_calendar"
|
|
|
|
fi
|
|
|
|
|
2002-08-07 06:37:13 +00:00
|
|
|
if test -n "$MOZ_PHOENIX"; then
|
|
|
|
add_makefiles "$MAKEFILES_phoenix"
|
|
|
|
fi
|
|
|
|
|
2005-04-17 10:06:09 +00:00
|
|
|
if test -n "$MOZ_SUITE"; then
|
|
|
|
add_makefiles "$MAKEFILES_suite"
|
|
|
|
fi
|
|
|
|
|
2003-04-17 06:14:23 +00:00
|
|
|
if test -n "$MOZ_XUL_APP"; then
|
|
|
|
add_makefiles "$MAKEFILES_xulapp"
|
|
|
|
fi
|
|
|
|
|
2004-09-09 19:10:39 +00:00
|
|
|
if test -n "$MOZ_XULRUNNER"; then
|
|
|
|
add_makefiles "$MAKEFILES_xulrunner"
|
|
|
|
fi
|
|
|
|
|
2003-04-17 06:14:23 +00:00
|
|
|
if test -n "$MOZ_THUNDERBIRD"; then
|
|
|
|
add_makefiles "$MAKEFILES_thunderbird"
|
2002-08-16 04:10:13 +00:00
|
|
|
fi
|
|
|
|
|
2003-09-24 13:59:37 +00:00
|
|
|
if test -n "$MOZ_STANDALONE_COMPOSER"; then
|
|
|
|
add_makefiles "$MAKEFILES_standalone_composer"
|
|
|
|
fi
|
|
|
|
|
2004-06-02 18:06:03 +00:00
|
|
|
if test -n "$MOZ_SUNBIRD"; then
|
|
|
|
add_makefiles "$MAKEFILES_sunbird"
|
|
|
|
fi
|
|
|
|
|
2006-08-29 16:53:40 +00:00
|
|
|
if test "$MOZ_BUILD_APP" = "camino"; then
|
2004-11-23 22:22:58 +00:00
|
|
|
add_makefiles "$MAKEFILES_macbrowser"
|
|
|
|
fi
|
|
|
|
|
2003-05-02 03:57:15 +00: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 03:33:15 +00:00
|
|
|
if test -n "$MINIMO"; then
|
2003-07-23 04:58:59 +00:00
|
|
|
add_makefiles "$MAKEFILES_minimo"
|
2005-06-08 16:48:44 +00:00
|
|
|
add_makefiles "$MAKEFILES_xulapp"
|
2003-07-23 04:58:59 +00:00
|
|
|
fi
|
|
|
|
|
2004-07-15 22:51:19 +00:00
|
|
|
if test -n "$MOZ_ENABLE_GTK2"; then
|
|
|
|
add_makefiles "$MAKEFILES_gnome"
|
|
|
|
fi
|
|
|
|
|
2004-10-09 00:10:14 +00:00
|
|
|
if test -n "$MOZ_STORAGE"; then
|
|
|
|
add_makefiles "$MAKEFILES_storage"
|
|
|
|
fi
|