1999-02-16 18:29:51 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The contents of this file are subject to the Netscape 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/NPL/
|
1999-02-16 18:29:51 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1999-02-16 18:29:51 +00:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
# Copyright (C) 1999 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
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
|
|
|
|
build/unix/mozilla-config
|
|
|
|
build/unix/nspr_my_config.mk
|
|
|
|
build/unix/nspr_my_overrides.mk
|
|
|
|
config/Makefile
|
|
|
|
config/autoconf.mk
|
|
|
|
config/mkdepend/Makefile
|
|
|
|
config/mkdetect/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
include/Makefile
|
2000-06-28 04:32:15 +00:00
|
|
|
tools/elf-dynstr-gc/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
2000-05-18 19:37:33 +00:00
|
|
|
|
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
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_dbm="
|
1999-11-16 15:56:31 +00:00
|
|
|
dbm/Makefile
|
|
|
|
dbm/include/Makefile
|
|
|
|
dbm/src/Makefile
|
|
|
|
dbm/tests/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/coreDom/Makefile
|
|
|
|
dom/public/coreEvents/Makefile
|
|
|
|
dom/public/css/Makefile
|
|
|
|
dom/public/events/Makefile
|
1999-04-13 01:26:35 +00:00
|
|
|
dom/public/range/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
dom/public/html/Makefile
|
1999-09-01 00:55:35 +00:00
|
|
|
dom/public/idl/Makefile
|
|
|
|
dom/public/idl/base/Makefile
|
|
|
|
dom/public/idl/coreDom/Makefile
|
|
|
|
dom/public/idl/css/Makefile
|
|
|
|
dom/public/idl/events/Makefile
|
|
|
|
dom/public/idl/html/Makefile
|
|
|
|
dom/public/idl/range/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
dom/src/Makefile
|
|
|
|
dom/src/base/Makefile
|
|
|
|
dom/src/build/Makefile
|
|
|
|
dom/src/coreDOM/Makefile
|
|
|
|
dom/src/css/Makefile
|
|
|
|
dom/src/events/Makefile
|
1999-04-15 20:17:20 +00:00
|
|
|
dom/src/range/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
dom/src/html/Makefile
|
|
|
|
dom/src/jsurl/Makefile
|
|
|
|
dom/tools/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_editor="
|
1999-02-16 18:29:51 +00:00
|
|
|
editor/Makefile
|
1999-12-01 06:08:25 +00:00
|
|
|
editor/base/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
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
|
1999-12-01 06:08:25 +00:00
|
|
|
editor/ui/Makefile
|
|
|
|
editor/ui/composer/Makefile
|
|
|
|
editor/ui/composer/content/Makefile
|
2000-05-09 23:03:31 +00:00
|
|
|
editor/ui/composer/content/images/Makefile
|
1999-12-01 06:08:25 +00:00
|
|
|
editor/ui/composer/locale/Makefile
|
|
|
|
editor/ui/composer/locale/en-US/Makefile
|
|
|
|
editor/ui/dialogs/Makefile
|
|
|
|
editor/ui/dialogs/content/Makefile
|
|
|
|
editor/ui/dialogs/locale/Makefile
|
|
|
|
editor/ui/dialogs/locale/en-US/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_expat="
|
1999-02-27 09:16:17 +00:00
|
|
|
expat/Makefile
|
|
|
|
expat/xmlparse/Makefile
|
|
|
|
expat/xmltok/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
|
|
|
"
|
|
|
|
|
|
|
|
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
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/src/motif/Makefile
|
1999-05-11 21:03:27 +00:00
|
|
|
gfx/src/photon/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/src/rhapsody/Makefile
|
2000-03-11 03:08:04 +00:00
|
|
|
gfx/src/mac/Makefile
|
1999-08-17 09:33:48 +00:00
|
|
|
gfx/src/qt/Makefile
|
1999-04-10 15:30:19 +00:00
|
|
|
gfx/src/xlib/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
|
1999-02-16 18:29:51 +00:00
|
|
|
gfx/tests/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_htmlparser="
|
1999-02-16 18:29:51 +00:00
|
|
|
htmlparser/Makefile
|
|
|
|
htmlparser/robot/Makefile
|
1999-11-02 01:54:54 +00:00
|
|
|
htmlparser/robot/test/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
htmlparser/src/Makefile
|
|
|
|
htmlparser/tests/Makefile
|
|
|
|
htmlparser/tests/grabpage/Makefile
|
|
|
|
htmlparser/tests/logparse/Makefile
|
1999-09-14 21:39:41 +00:00
|
|
|
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
|
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
|
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
|
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
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_js="
|
1999-02-16 18:29:51 +00:00
|
|
|
js/Makefile
|
|
|
|
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-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_layout="
|
1999-02-16 18:29:51 +00:00
|
|
|
layout/Makefile
|
|
|
|
layout/base/Makefile
|
|
|
|
layout/base/public/Makefile
|
|
|
|
layout/base/src/Makefile
|
|
|
|
layout/base/tests/Makefile
|
|
|
|
layout/build/Makefile
|
|
|
|
layout/events/Makefile
|
|
|
|
layout/events/public/Makefile
|
|
|
|
layout/events/src/Makefile
|
|
|
|
layout/html/Makefile
|
|
|
|
layout/html/base/Makefile
|
|
|
|
layout/html/base/src/Makefile
|
|
|
|
layout/html/content/Makefile
|
|
|
|
layout/html/content/public/Makefile
|
|
|
|
layout/html/content/src/Makefile
|
|
|
|
layout/html/document/Makefile
|
1999-05-06 19:24:31 +00:00
|
|
|
layout/html/document/public/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
layout/html/document/src/Makefile
|
|
|
|
layout/html/forms/Makefile
|
|
|
|
layout/html/forms/public/Makefile
|
|
|
|
layout/html/forms/src/Makefile
|
|
|
|
layout/html/style/Makefile
|
|
|
|
layout/html/style/public/Makefile
|
|
|
|
layout/html/style/src/Makefile
|
|
|
|
layout/html/table/Makefile
|
|
|
|
layout/html/table/public/Makefile
|
|
|
|
layout/html/table/src/Makefile
|
|
|
|
layout/html/tests/Makefile
|
|
|
|
layout/tools/Makefile
|
|
|
|
layout/xml/Makefile
|
|
|
|
layout/xml/content/Makefile
|
|
|
|
layout/xml/content/public/Makefile
|
|
|
|
layout/xml/content/src/Makefile
|
|
|
|
layout/xml/document/Makefile
|
|
|
|
layout/xml/document/public/Makefile
|
|
|
|
layout/xml/document/src/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
|
|
|
|
layout/xul/content/Makefile
|
|
|
|
layout/xul/content/src/Makefile
|
2000-01-11 09:49:20 +00:00
|
|
|
layout/xbl/Makefile
|
2000-01-11 08:26:26 +00:00
|
|
|
layout/xbl/public/Makefile
|
2000-01-12 09:26:27 +00:00
|
|
|
layout/xbl/src/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libimg="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/libimg/Makefile
|
|
|
|
modules/libimg/public/Makefile
|
1999-04-23 00:27:30 +00:00
|
|
|
modules/libimg/public_com/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/libimg/src/Makefile
|
1999-04-23 00:27:30 +00:00
|
|
|
modules/libimg/gifcom/Makefile
|
|
|
|
modules/libimg/jpgcom/Makefile
|
|
|
|
modules/libimg/pngcom/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libjar="
|
1999-03-25 20:47:28 +00:00
|
|
|
modules/libjar/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libreg="
|
|
|
|
modules/libreg/Makefile
|
|
|
|
modules/libreg/include/Makefile
|
|
|
|
modules/libreg/src/Makefile
|
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_libpref="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/libpref/Makefile
|
|
|
|
modules/libpref/admin/Makefile
|
|
|
|
modules/libpref/l10n/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
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_plugin="
|
1999-02-16 18:29:51 +00:00
|
|
|
modules/plugin/Makefile
|
|
|
|
modules/plugin/nglsrc/Makefile
|
|
|
|
modules/plugin/public/Makefile
|
|
|
|
modules/plugin/src/Makefile
|
|
|
|
modules/plugin/test/Makefile
|
2000-06-02 04:27:10 +00:00
|
|
|
modules/plugin/SanePlugin/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/build/Makefile
|
|
|
|
netwerk/cache/filecache/Makefile
|
|
|
|
netwerk/cache/Makefile
|
|
|
|
netwerk/cache/memcache/Makefile
|
|
|
|
netwerk/cache/mgr/Makefile
|
|
|
|
netwerk/cache/public/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/public/Makefile
|
|
|
|
netwerk/protocol/data/src/Makefile
|
1999-12-21 22:33:36 +00:00
|
|
|
netwerk/protocol/datetime/src/Makefile
|
|
|
|
netwerk/protocol/datetime/Makefile
|
1999-11-02 01:54:54 +00:00
|
|
|
netwerk/protocol/file/Makefile
|
|
|
|
netwerk/protocol/file/public/Makefile
|
|
|
|
netwerk/protocol/file/src/Makefile
|
2000-02-03 00:40:22 +00:00
|
|
|
netwerk/protocol/finger/Makefile
|
|
|
|
netwerk/protocol/finger/src/Makefile
|
1999-11-02 01:54:54 +00:00
|
|
|
netwerk/protocol/ftp/Makefile
|
|
|
|
netwerk/protocol/ftp/public/Makefile
|
|
|
|
netwerk/protocol/ftp/src/Makefile
|
|
|
|
netwerk/protocol/http/Makefile
|
|
|
|
netwerk/protocol/http/public/Makefile
|
|
|
|
netwerk/protocol/http/src/Makefile
|
|
|
|
netwerk/protocol/jar/Makefile
|
|
|
|
netwerk/protocol/jar/public/Makefile
|
|
|
|
netwerk/protocol/jar/src/Makefile
|
|
|
|
netwerk/protocol/keyword/Makefile
|
|
|
|
netwerk/protocol/keyword/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
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_uriloader="
|
1999-11-18 06:05:16 +00:00
|
|
|
uriloader/Makefile
|
|
|
|
uriloader/base/Makefile
|
|
|
|
uriloader/build/Makefile
|
2000-04-15 16:54:24 +00:00
|
|
|
uriloader/extprotocol/Makefile
|
|
|
|
uriloader/extprotocol/base/Makefile
|
|
|
|
uriloader/extprotocol/unix/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-28 22:50:45 +00:00
|
|
|
profile/resources/content/Makefile
|
1999-09-17 23:19:07 +00:00
|
|
|
profile/resources/locale/Makefile
|
|
|
|
profile/resources/locale/en-US/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-09-29 04:07:12 +00:00
|
|
|
profile/pref-migrator/resources/content/Makefile
|
|
|
|
profile/pref-migrator/resources/locale/Makefile
|
|
|
|
profile/pref-migrator/resources/locale/en-US/Makefile
|
1999-07-09 04:39:31 +00:00
|
|
|
profile/defaults/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-04-02 17:41:00 +00:00
|
|
|
rdf/chrome/Makefile
|
|
|
|
rdf/chrome/build/Makefile
|
|
|
|
rdf/chrome/public/Makefile
|
|
|
|
rdf/chrome/src/Makefile
|
1999-02-24 09:54:36 +00:00
|
|
|
rdf/util/Makefile
|
|
|
|
rdf/util/public/Makefile
|
|
|
|
rdf/util/src/Makefile
|
1999-05-04 18:59:21 +00:00
|
|
|
rdf/resources/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
rdf/build/Makefile
|
|
|
|
rdf/content/Makefile
|
|
|
|
rdf/content/public/Makefile
|
|
|
|
rdf/content/src/Makefile
|
|
|
|
rdf/datasource/Makefile
|
|
|
|
rdf/datasource/public/Makefile
|
|
|
|
rdf/datasource/src/Makefile
|
|
|
|
rdf/tests/Makefile
|
1999-06-22 01:51:13 +00:00
|
|
|
rdf/tests/domds/Makefile
|
1999-06-22 02:01:11 +00:00
|
|
|
rdf/tests/domds/resources/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
rdf/tests/localfile/Makefile
|
|
|
|
rdf/tests/rdfsink/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
|
|
|
|
sun-java/stubs/src/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
|
|
|
"
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
webshell/src/Makefile
|
|
|
|
webshell/tests/Makefile
|
|
|
|
webshell/tests/viewer/Makefile
|
|
|
|
webshell/tests/viewer/public/Makefile
|
1999-08-22 14:06:52 +00:00
|
|
|
webshell/tests/viewer/unix/Makefile
|
|
|
|
webshell/tests/viewer/unix/gtk/Makefile
|
|
|
|
webshell/tests/viewer/unix/motif/Makefile
|
|
|
|
webshell/tests/viewer/unix/qt/Makefile
|
|
|
|
webshell/tests/viewer/unix/xlib/Makefile
|
1999-05-28 12:43:59 +00:00
|
|
|
webshell/embed/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
|
1999-05-11 21:03:27 +00:00
|
|
|
widget/src/gtk/Makefile
|
1999-11-12 20:12:28 +00:00
|
|
|
widget/src/gtksuperwin/Makefile
|
2000-04-22 20:45:12 +00:00
|
|
|
widget/src/gtkxtbin/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
widget/src/motif/Makefile
|
1999-07-23 12:12:08 +00:00
|
|
|
widget/src/motif/app_context/Makefile
|
1999-05-11 21:03:27 +00:00
|
|
|
widget/src/photon/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
widget/src/rhapsody/Makefile
|
2000-03-11 03:08:04 +00:00
|
|
|
widget/src/mac/Makefile
|
1999-04-10 15:30:19 +00:00
|
|
|
widget/src/xlib/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
widget/src/os2/Makefile
|
|
|
|
widget/src/os2/res/Makefile
|
|
|
|
widget/src/os2/tests/Makefile
|
1999-08-17 09:33:48 +00:00
|
|
|
widget/src/qt/Makefile
|
1999-07-21 22:02:16 +00:00
|
|
|
widget/src/xlib/window_service/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
|
1999-02-16 18:29:51 +00:00
|
|
|
widget/tests/Makefile
|
|
|
|
widget/tests/scribble/Makefile
|
|
|
|
widget/tests/widget/Makefile
|
1999-07-20 08:23:29 +00:00
|
|
|
widget/timer/Makefile
|
|
|
|
widget/timer/public/Makefile
|
|
|
|
widget/timer/src/Makefile
|
|
|
|
widget/timer/src/beos/Makefile
|
|
|
|
widget/timer/src/rhapsody/Makefile
|
|
|
|
widget/timer/src/unix/Makefile
|
|
|
|
widget/timer/src/unix/gtk/Makefile
|
|
|
|
widget/timer/src/unix/motif/Makefile
|
2000-02-03 00:07:20 +00:00
|
|
|
widget/timer/src/unix/photon/Makefile
|
1999-07-20 08:23:29 +00:00
|
|
|
widget/timer/src/unix/xlib/Makefile
|
1999-08-17 09:33:48 +00:00
|
|
|
widget/timer/src/unix/qt/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpcom="
|
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
|
|
|
|
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
|
|
|
|
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-02-16 18:29:51 +00:00
|
|
|
xpcom/tests/Makefile
|
|
|
|
xpcom/tests/dynamic/Makefile
|
1999-05-26 08:11:53 +00:00
|
|
|
xpcom/tests/services/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
|
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
|
1999-03-25 20:47:28 +00:00
|
|
|
xpinstall/public/Makefile
|
1999-06-23 06:22:53 +00:00
|
|
|
xpinstall/res/Makefile
|
2000-01-11 03:46:42 +00:00
|
|
|
xpinstall/res/content/Makefile
|
|
|
|
xpinstall/res/locale/Makefile
|
|
|
|
xpinstall/res/locale/en-US/Makefile
|
1999-03-25 20:47:28 +00:00
|
|
|
xpinstall/src/Makefile
|
2000-01-11 03:46:42 +00:00
|
|
|
xpinstall/stub/Makefile
|
2000-04-16 22:26:44 +00:00
|
|
|
xpinstall/wizard/unix/src2/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
MAKEFILES_xpfe="
|
1999-02-16 18:29:51 +00:00
|
|
|
xpfe/Makefile
|
|
|
|
xpfe/browser/Makefile
|
|
|
|
xpfe/browser/public/Makefile
|
|
|
|
xpfe/browser/src/Makefile
|
1999-04-02 21:13:29 +00:00
|
|
|
xpfe/browser/samples/Makefile
|
|
|
|
xpfe/browser/samples/sampleimages/Makefile
|
1999-04-22 02:45:24 +00:00
|
|
|
xpfe/components/Makefile
|
|
|
|
xpfe/components/public/Makefile
|
1999-05-13 05:41:33 +00:00
|
|
|
xpfe/components/sample/Makefile
|
|
|
|
xpfe/components/sample/public/Makefile
|
|
|
|
xpfe/components/sample/src/Makefile
|
|
|
|
xpfe/components/sample/resources/Makefile
|
2000-01-11 03:46:42 +00:00
|
|
|
xpfe/components/shistory/Makefile
|
|
|
|
xpfe/components/shistory/public/Makefile
|
|
|
|
xpfe/components/shistory/src/Makefile
|
1999-06-11 06:16:22 +00:00
|
|
|
xpfe/components/bookmarks/Makefile
|
|
|
|
xpfe/components/bookmarks/public/Makefile
|
|
|
|
xpfe/components/bookmarks/src/Makefile
|
|
|
|
xpfe/components/bookmarks/resources/Makefile
|
1999-08-23 04:20:45 +00:00
|
|
|
xpfe/components/directory/Makefile
|
2000-02-14 01:18:25 +00:00
|
|
|
xpfe/components/timebomb/Makefile
|
2000-03-15 15:12:49 +00:00
|
|
|
xpfe/components/timebomb/tools/Makefile
|
2000-02-14 01:18:25 +00:00
|
|
|
xpfe/components/timebomb/resources/Makefile
|
|
|
|
xpfe/components/timebomb/resources/content/Makefile
|
|
|
|
xpfe/components/timebomb/resources/locale/Makefile
|
|
|
|
xpfe/components/timebomb/resources/locale/en-US/Makefile
|
1999-09-21 05:08:18 +00:00
|
|
|
xpfe/components/regviewer/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
|
1999-04-22 03:28:32 +00:00
|
|
|
xpfe/components/find/resources/Makefile
|
2000-03-22 10:31:44 +00:00
|
|
|
xpfe/components/filepicker/src/Makefile
|
|
|
|
xpfe/components/filepicker/res/content/Makefile
|
2000-04-05 02:12:26 +00:00
|
|
|
xpfe/components/filepicker/res/locale/Makefile
|
|
|
|
xpfe/components/filepicker/res/locale/en-US/Makefile
|
2000-03-22 10:31:44 +00:00
|
|
|
xpfe/components/filepicker/res/Makefile
|
|
|
|
xpfe/components/filepicker/Makefile
|
1999-05-18 03:40:25 +00:00
|
|
|
xpfe/components/history/Makefile
|
|
|
|
xpfe/components/history/src/Makefile
|
|
|
|
xpfe/components/history/public/Makefile
|
|
|
|
xpfe/components/history/resources/Makefile
|
1999-06-09 20:40:18 +00:00
|
|
|
xpfe/components/prefwindow/Makefile
|
|
|
|
xpfe/components/prefwindow/resources/Makefile
|
|
|
|
xpfe/components/prefwindow/resources/content/Makefile
|
1999-08-10 02:49:43 +00:00
|
|
|
xpfe/components/prefwindow/resources/locale/Makefile
|
|
|
|
xpfe/components/prefwindow/resources/locale/en-US/Makefile
|
1999-06-07 19:22:35 +00:00
|
|
|
xpfe/components/related/Makefile
|
|
|
|
xpfe/components/related/src/Makefile
|
|
|
|
xpfe/components/related/public/Makefile
|
|
|
|
xpfe/components/related/resources/Makefile
|
1999-08-19 19:57:10 +00:00
|
|
|
xpfe/components/search/Makefile
|
|
|
|
xpfe/components/search/datasets/Makefile
|
|
|
|
xpfe/components/search/resources/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/public/Makefile
|
1999-08-03 22:35:39 +00:00
|
|
|
xpfe/components/sidebar/resources/Makefile
|
1999-11-30 00:49:09 +00:00
|
|
|
xpfe/components/sidebar/src/Makefile
|
1999-05-13 02:47:41 +00:00
|
|
|
xpfe/components/xfer/Makefile
|
|
|
|
xpfe/components/xfer/public/Makefile
|
|
|
|
xpfe/components/xfer/src/Makefile
|
|
|
|
xpfe/components/xfer/resources/Makefile
|
|
|
|
xpfe/components/ucth/Makefile
|
|
|
|
xpfe/components/ucth/public/Makefile
|
|
|
|
xpfe/components/ucth/src/Makefile
|
|
|
|
xpfe/components/ucth/resources/Makefile
|
2000-02-08 08:24:54 +00:00
|
|
|
xpfe/components/remote/Makefile
|
|
|
|
xpfe/components/remote/public/Makefile
|
|
|
|
xpfe/components/remote/src/Makefile
|
2000-04-13 04:49:50 +00:00
|
|
|
xpfe/components/autocomplete/Makefile
|
|
|
|
xpfe/components/autocomplete/public/Makefile
|
|
|
|
xpfe/components/autocomplete/resources/Makefile
|
|
|
|
xpfe/components/autocomplete/resources/skin/Makefile
|
|
|
|
xpfe/components/autocomplete/src/Makefile
|
2000-04-14 02:47:54 +00:00
|
|
|
xpfe/components/console/Makefile
|
|
|
|
xpfe/components/console/resources/Makefile
|
|
|
|
xpfe/components/console/resources/content/Makefile
|
|
|
|
xpfe/components/console/resources/locale/Makefile
|
|
|
|
xpfe/components/console/resources/locale/en-US/Makefile
|
1999-02-16 18:29:51 +00:00
|
|
|
xpfe/appshell/Makefile
|
|
|
|
xpfe/appshell/src/Makefile
|
|
|
|
xpfe/appshell/public/Makefile
|
|
|
|
xpfe/bootstrap/Makefile
|
|
|
|
xpfe/browser/Makefile
|
|
|
|
xpfe/browser/src/Makefile
|
1999-07-01 23:02:59 +00:00
|
|
|
xpfe/browser/resources/Makefile
|
|
|
|
xpfe/browser/resources/content/Makefile
|
1999-08-12 22:41:25 +00:00
|
|
|
xpfe/browser/resources/locale/Makefile
|
|
|
|
xpfe/browser/resources/locale/en-US/Makefile
|
1999-07-14 00:48:10 +00:00
|
|
|
xpfe/global/Makefile
|
|
|
|
xpfe/global/resources/Makefile
|
2000-06-02 21:33:43 +00:00
|
|
|
xpfe/global/resources/skin/os2/Makefile
|
2000-01-27 09:56:56 +00:00
|
|
|
xpfe/global/resources/skin/unix/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
|
2000-05-11 07:38:19 +00:00
|
|
|
xpfe/global/resources/skin/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
|
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
|
2000-04-21 07:15:14 +00:00
|
|
|
xpfe/communicator/Makefile
|
|
|
|
xpfe/communicator/resources/Makefile
|
2000-05-10 02:31:31 +00:00
|
|
|
xpfe/communicator/resources/locale/Makefile
|
|
|
|
xpfe/communicator/resources/locale/en-US/Makefile
|
|
|
|
xpfe/communicator/resources/content/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
|
|
|
|
embedding/browser/Makefile
|
|
|
|
embedding/browser/build/Makefile
|
|
|
|
embedding/browser/webBrowser/Makefile
|
|
|
|
embedding/browser/setup/Makefile
|
2000-03-31 03:58:02 +00:00
|
|
|
embedding/browser/gtk/Makefile
|
|
|
|
embedding/browser/gtk/src/Makefile
|
|
|
|
embedding/browser/gtk/tests/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
2000-02-01 08:38:48 +00:00
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_security="
|
2000-03-11 04:33:39 +00:00
|
|
|
security/Makefile
|
|
|
|
security/psm/Makefile
|
|
|
|
security/psm/lib/Makefile
|
|
|
|
security/psm/lib/client/Makefile
|
|
|
|
security/psm/lib/protocol/Makefile
|
2000-05-20 02:45:59 +00:00
|
|
|
"
|
1999-07-01 23:02:59 +00:00
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_transformiix="
|
|
|
|
extensions/transformiix/source/base/Makefile
|
|
|
|
extensions/transformiix/source/main/Makefile
|
|
|
|
extensions/transformiix/source/net/Makefile
|
|
|
|
extensions/transformiix/source/xml/dom/standalone/Makefile
|
|
|
|
extensions/transformiix/source/xml/dom/Makefile
|
|
|
|
extensions/transformiix/source/xml/dom/mozImpl/Makefile
|
|
|
|
extensions/transformiix/source/xml/parser/Makefile
|
|
|
|
extensions/transformiix/source/xml/printer/Makefile
|
|
|
|
extensions/transformiix/source/xml/util/Makefile
|
|
|
|
extensions/transformiix/source/xml/Makefile
|
|
|
|
extensions/transformiix/source/xpath/Makefile
|
|
|
|
extensions/transformiix/source/xslt/functions/Makefile
|
|
|
|
extensions/transformiix/source/xslt/util/Makefile
|
|
|
|
extensions/transformiix/source/xslt/Makefile
|
|
|
|
extensions/transformiix/source/Makefile
|
|
|
|
extensions/transformiix/Makefile
|
|
|
|
"
|
2000-02-23 22:47:39 +00:00
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
if [ "$MOZ_MAIL_NEWS" ]; then
|
|
|
|
MAKEFILES_mailnews=`cat ${srcdir}/mailnews/makefiles`
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! "$SYSTEM_JPEG" ]; then
|
|
|
|
MAKEFILES_jpeg="jpeg/Makefile"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! "$SYSTEM_ZLIB" ]; then
|
|
|
|
MAKEFILES_zlib="
|
|
|
|
modules/zlib/Makefile
|
|
|
|
modules/zlib/src/Makefile
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! "$SYSTEM_PNG" ]; then
|
|
|
|
MAKEFILES_libimg="$MAKEFILES_libimg modules/libimg/png/Makefile"
|
|
|
|
fi
|
2000-05-08 21:35:40 +00:00
|
|
|
|
1999-05-04 17:45:58 +00:00
|
|
|
|
2000-03-09 02:08:23 +00:00
|
|
|
#
|
|
|
|
# java/
|
|
|
|
#
|
|
|
|
if [ "$MOZ_JAVA_SUPPLEMENT" ]; then
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_java_supplement=`cat ${srcdir}/java/makefiles`
|
2000-03-09 02:08:23 +00:00
|
|
|
fi
|
|
|
|
|
1999-10-08 01:32:44 +00:00
|
|
|
#
|
|
|
|
# l10n/
|
|
|
|
#
|
2000-06-29 00:18:55 +00:00
|
|
|
MAKEFILES_langpacks=`cat ${srcdir}/l10n/makefiles.all`
|
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
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_jprof="tools/jprof/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
|
|
|
|
|
|
|
# layout/mathml
|
|
|
|
if [ "$MOZ_MATHML" ]; then
|
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
|
|
|
|
2000-05-05 04:32:50 +00:00
|
|
|
# layout/svg
|
|
|
|
if [ "$MOZ_SVG" ]; then
|
2000-05-20 02:45:59 +00:00
|
|
|
MAKEFILES_layout="$MAKEFILES_layout
|
|
|
|
layout/svg/Makefile
|
|
|
|
layout/svg/base/Makefile
|
|
|
|
layout/svg/base/public/Makefile
|
|
|
|
layout/svg/base/src/Makefile
|
|
|
|
layout/svg/content/Makefile
|
|
|
|
layout/svg/content/src/Makefile
|
|
|
|
"
|
2000-05-05 04:32:50 +00:00
|
|
|
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
|
|
|
|
|
2000-06-12 23:13:42 +00:00
|
|
|
# libimg/mng
|
|
|
|
if [ "$MOZ_MNG" ]; then
|
|
|
|
MAKEFILES_libimg="$MAKEFILES_libimg
|
|
|
|
modules/libimg/mng/Makefile
|
|
|
|
modules/libimg/mngcom/Makefile
|
|
|
|
"
|
|
|
|
fi
|
1999-11-09 23:30:32 +00:00
|
|
|
|
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
|
|
|
|
cookie ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/cookie/Makefile
|
|
|
|
extensions/cookie/tests/Makefile
|
|
|
|
" ;;
|
|
|
|
psm-glue ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/psm-glue/public/Makefile
|
|
|
|
extensions/psm-glue/Makefile
|
|
|
|
extensions/psm-glue/res/content/Makefile
|
|
|
|
extensions/psm-glue/res/Makefile
|
|
|
|
extensions/psm-glue/res/locale/Makefile
|
|
|
|
extensions/psm-glue/res/locale/en-US/Makefile
|
|
|
|
extensions/psm-glue/src/Makefile
|
|
|
|
" ;;
|
|
|
|
irc ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/irc/Makefile
|
|
|
|
extensions/irc/xul/Makefile
|
|
|
|
extensions/irc/xul/content/Makefile
|
|
|
|
extensions/irc/xul/locale/Makefile
|
|
|
|
extensions/irc/xul/locale/en-US/Makefile
|
|
|
|
" ;;
|
2000-05-24 22:54:58 +00:00
|
|
|
transformiix ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_transformiix"
|
2000-05-20 02:45:59 +00:00
|
|
|
;;
|
2000-05-28 04:04:04 +00:00
|
|
|
wallet ) MAKEFILES_extensions="$MAKEFILES_extensions
|
2000-05-20 02:45:59 +00:00
|
|
|
extensions/wallet/Makefile
|
|
|
|
extensions/wallet/public/Makefile
|
|
|
|
extensions/wallet/src/Makefile
|
|
|
|
extensions/wallet/editor/Makefile
|
|
|
|
extensions/wallet/cookieviewer/Makefile
|
|
|
|
extensions/wallet/signonviewer/Makefile
|
|
|
|
extensions/wallet/walletpreview/Makefile
|
|
|
|
extensions/wallet/build/Makefile
|
|
|
|
" ;;
|
2000-07-01 21:40:53 +00:00
|
|
|
xmlextras ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/xmlextras/Makefile
|
|
|
|
extensions/xmlextras/base/Makefile
|
|
|
|
extensions/xmlextras/base/src/Makefile
|
|
|
|
extensions/xmlextras/base/public/Makefile
|
|
|
|
extensions/xmlextras/build/Makefile
|
|
|
|
extensions/xmlextras/build/src/Makefile
|
|
|
|
" ;;
|
2000-05-20 02:45:59 +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
|
|
|
|
" ;;
|
|
|
|
xml-rpc ) MAKEFILES_extensions="$MAKEFILES_extensions
|
|
|
|
extensions/xml-rpc/Makefile
|
|
|
|
extensions/xml-rpc/idl/Makefile
|
|
|
|
extensions/xml-rpc/src/Makefile
|
|
|
|
" ;;
|
|
|
|
esac
|
|
|
|
done
|
1999-11-09 23:30:32 +00:00
|
|
|
|
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
#
|
|
|
|
# Translate from BUILD_MODULES into the proper makefiles list
|
|
|
|
#
|
|
|
|
if [ "$BUILD_MODULES" = "all" ]; then
|
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
|
|
|
|
$MAKEFILES_db
|
|
|
|
$MAKEFILES_dbm
|
|
|
|
$MAKEFILES_docshell
|
|
|
|
$MAKEFILES_dom
|
|
|
|
$MAKEFILES_editor
|
|
|
|
$MAKEFILES_embedding
|
|
|
|
$MAKEFILES_expat
|
|
|
|
$MAKEFILES_extensions
|
|
|
|
$MAKEFILES_gfx
|
|
|
|
$MAKEFILES_htmlparser
|
|
|
|
$MAKEFILES_intl
|
|
|
|
$MAKEFILES_java_supplement
|
|
|
|
$MAKEFILES_ldap
|
|
|
|
$MAKEFILES_leaky
|
|
|
|
$MAKEFILES_jpeg
|
|
|
|
$MAKEFILES_jprof
|
|
|
|
$MAKEFILES_js
|
|
|
|
$MAKEFILES_l10n
|
|
|
|
$MAKEFILES_l10n_lang
|
2000-06-27 00:24:48 +00:00
|
|
|
$MAKEFILES_langpacks
|
2000-05-20 02:45:59 +00:00
|
|
|
$MAKEFILES_layout
|
|
|
|
$MAKEFILES_libreg
|
|
|
|
$MAKEFILES_libimg
|
|
|
|
$MAKEFILES_libjar
|
|
|
|
$MAKEFILES_libpref
|
|
|
|
$MAKEFILES_libutil
|
|
|
|
$MAKEFILES_liveconnect
|
|
|
|
$MAKEFILES_mailnews
|
|
|
|
$MAKEFILES_oji
|
|
|
|
$MAKEFILES_plugin
|
|
|
|
$MAKEFILES_netwerk
|
|
|
|
$MAKEFILES_profile
|
|
|
|
$MAKEFILES_rdf
|
|
|
|
$MAKEFILES_security
|
|
|
|
$MAKEFILES_sun_java
|
|
|
|
$MAKEFILES_themes
|
|
|
|
$MAKEFILES_uriloader
|
|
|
|
$MAKEFILES_view
|
|
|
|
$MAKEFILES_webshell
|
|
|
|
$MAKEFILES_widget
|
|
|
|
$MAKEFILES_xpcom
|
|
|
|
$MAKEFILES_xpconnect
|
|
|
|
$MAKEFILES_xpinstall
|
|
|
|
$MAKEFILES_xpfe
|
|
|
|
$MAKEFILES_zlib
|
|
|
|
"
|
2000-03-01 02:38:38 +00:00
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
else
|
2000-05-05 06:30:27 +00:00
|
|
|
|
2000-05-20 02:45:59 +00:00
|
|
|
# Standalone modules go here
|
|
|
|
for mod in $BUILD_MODULES; do
|
|
|
|
case $mod in
|
|
|
|
dbm) add_makefiles "$MAKEFILES_dbm"
|
|
|
|
;;
|
|
|
|
js) add_makefiles "$MAKEFILES_js"
|
|
|
|
;;
|
|
|
|
necko) add_makefiles "
|
|
|
|
$MAKEFILES_netwerk $MAKEFILES_xpcom $MAKEFILES_libreg"
|
|
|
|
;;
|
|
|
|
transformiix) add_makefiles "$MAKEFILES_transformiix"
|
|
|
|
;;
|
|
|
|
xpcom) add_makefiles "$MAKEFILES_xpcom $MAKEFILES_libreg"
|
|
|
|
;;
|
|
|
|
xpconnect) add_makefiles "
|
|
|
|
$MAKEFILES_xpconnect $MAKEFILES_js $MAKEFILES_xpcom
|
|
|
|
$MAKEFILES_libreg"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2000-05-05 06:30:27 +00:00
|
|
|
fi
|