1999-12-15 12:40:24 +03:00
|
|
|
#
|
1999-11-06 06:43:54 +03: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/
|
1998-08-21 07:34:44 +04:00
|
|
|
#
|
1999-11-06 06:43:54 +03: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.
|
1998-08-21 07:34:44 +04:00
|
|
|
#
|
1999-11-06 06:43:54 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1998-08-21 07:34:44 +04:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1998-08-21 07:34:44 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
DEPTH = .
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2000-04-18 13:42:12 +04:00
|
|
|
include $(topsrcdir)/build/unix/modules.mk
|
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
ifeq ($(BUILD_MODULES),all)
|
2001-11-16 10:40:42 +03:00
|
|
|
#
|
|
|
|
# And now for something completely different...
|
|
|
|
# Divide the default build into tiers.
|
|
|
|
# Tiers must be defined on module boundaries
|
|
|
|
#
|
2001-11-21 10:10:52 +03:00
|
|
|
default: $(SUBMAKEFILES)
|
2002-09-13 00:05:28 +04:00
|
|
|
$(MAKE) -C config export
|
2002-01-26 01:29:51 +03:00
|
|
|
$(MAKE) nspr
|
|
|
|
$(MAKE) ldap
|
2002-09-13 00:05:28 +04:00
|
|
|
$(MAKE) tier_0
|
2001-12-10 09:13:54 +03:00
|
|
|
$(MAKE) tier_1
|
2002-05-03 02:53:30 +04:00
|
|
|
$(MAKE) tier_2
|
2001-12-10 09:13:54 +03:00
|
|
|
$(MAKE) tier_9
|
2003-08-30 04:20:58 +04:00
|
|
|
ifdef MOZ_PSM
|
|
|
|
$(MAKE) tier_40
|
|
|
|
endif
|
2003-07-16 04:33:50 +04:00
|
|
|
$(MAKE) tier_50
|
|
|
|
ifdef MOZ_JSDEBUGGER
|
|
|
|
$(MAKE) tier_93
|
|
|
|
endif
|
2002-03-20 01:30:48 +03:00
|
|
|
ifdef MOZ_EXTENSIONS
|
|
|
|
$(MAKE) tier_94
|
|
|
|
endif
|
2001-12-10 09:13:54 +03:00
|
|
|
ifdef MOZ_MAIL_NEWS
|
|
|
|
$(MAKE) tier_97
|
|
|
|
endif
|
|
|
|
ifdef MOZ_CALENDAR
|
|
|
|
$(MAKE) tier_98
|
|
|
|
endif
|
|
|
|
$(MAKE) tier_99
|
1998-11-11 04:53:49 +03:00
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
# Make sure that the existing rulesets work
|
2002-01-26 01:29:51 +03:00
|
|
|
DIRS = \
|
2001-12-10 09:25:40 +03:00
|
|
|
$(tier_0_dirs) \
|
|
|
|
$(tier_1_dirs) \
|
2002-05-03 02:53:30 +04:00
|
|
|
$(tier_2_dirs) \
|
2001-12-10 09:25:40 +03:00
|
|
|
$(tier_9_dirs) \
|
2003-08-30 04:20:58 +04:00
|
|
|
$(tier_40_dirs) \
|
2003-07-16 04:33:50 +04:00
|
|
|
$(tier_50_dirs) \
|
2001-12-10 09:25:40 +03:00
|
|
|
$(NULL)
|
|
|
|
|
2002-01-26 01:29:51 +03:00
|
|
|
ifdef GC_LEAK_DETECTOR
|
|
|
|
DIRS += gc/boehm
|
2001-12-10 11:06:51 +03:00
|
|
|
endif
|
|
|
|
|
2003-07-16 04:33:50 +04:00
|
|
|
ifdef MOZ_JSDEBUGGER
|
|
|
|
DIRS += $(tier_93_dirs)
|
|
|
|
endif
|
2002-03-20 01:30:48 +03:00
|
|
|
ifdef MOZ_EXTENSIONS
|
|
|
|
DIRS += $(tier_94_dirs)
|
|
|
|
endif
|
2001-12-10 09:25:40 +03:00
|
|
|
ifdef MOZ_MAIL_NEWS
|
|
|
|
DIRS += $(tier_97_dirs)
|
|
|
|
endif
|
|
|
|
ifdef MOZ_CALENDAR
|
|
|
|
DIRS += $(tier_98_dirs)
|
|
|
|
endif
|
|
|
|
|
|
|
|
DIRS += $(tier_99_dirs)
|
1999-10-08 05:32:44 +04:00
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
#
|
|
|
|
# tier 0 - base build config dirs
|
|
|
|
#
|
|
|
|
tier_0_dirs = \
|
|
|
|
config \
|
|
|
|
build \
|
|
|
|
$(NULL)
|
1999-10-19 03:14:16 +04:00
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
#
|
2002-05-03 02:53:30 +04:00
|
|
|
# tier 1 - 3rd party individual libraries
|
2001-12-10 07:30:31 +03:00
|
|
|
#
|
2002-05-03 02:53:30 +04:00
|
|
|
tier_1_dirs += dbm
|
2001-12-10 07:30:31 +03:00
|
|
|
|
2002-05-03 02:53:30 +04:00
|
|
|
ifndef MOZ_NATIVE_JPEG
|
|
|
|
tier_1_dirs += jpeg
|
|
|
|
endif
|
2000-05-20 06:45:59 +04:00
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
ifndef MOZ_NATIVE_ZLIB
|
2002-05-03 02:53:30 +04:00
|
|
|
tier_1_dirs += modules/zlib
|
2000-05-20 06:45:59 +04:00
|
|
|
endif
|
1998-11-11 04:53:49 +03:00
|
|
|
|
2001-12-18 12:14:29 +03:00
|
|
|
# Installer needs standalone libjar, hence standalone zlib
|
2002-05-31 04:39:07 +04:00
|
|
|
ifdef MOZ_INSTALLER
|
2002-05-03 02:53:30 +04:00
|
|
|
tier_1_dirs += modules/zlib/standalone
|
2001-05-16 00:42:29 +04:00
|
|
|
endif
|
|
|
|
|
2002-05-03 02:53:30 +04:00
|
|
|
ifdef MOZ_INTERNAL_LIBART_LGPL
|
|
|
|
tier_1_dirs += other-licenses/libart_lgpl
|
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# tier 2 - base libraries
|
|
|
|
#
|
2003-10-08 07:39:52 +04:00
|
|
|
tier_2_dirs = \
|
|
|
|
js \
|
2002-05-03 02:53:30 +04:00
|
|
|
xpcom \
|
2003-08-15 03:50:21 +04:00
|
|
|
modules/libreg \
|
2003-03-15 04:04:32 +03:00
|
|
|
xpcom/obsolete \
|
2002-05-03 02:53:30 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2003-01-15 23:40:06 +03:00
|
|
|
ifdef NS_TRACE_MALLOC
|
|
|
|
tier_2_dirs += tools/trace-malloc/lib tools/trace-malloc
|
|
|
|
endif
|
|
|
|
|
2002-05-03 02:53:30 +04:00
|
|
|
#
|
|
|
|
# tier 9 - core components (necko,gecko)
|
|
|
|
#
|
|
|
|
|
|
|
|
tier_9_dirs += \
|
|
|
|
js/src/xpconnect \
|
|
|
|
intl \
|
|
|
|
modules/libjar \
|
|
|
|
$(NULL)
|
2001-11-16 10:40:42 +03:00
|
|
|
|
|
|
|
ifdef MOZ_OJI
|
2003-03-25 09:54:52 +03:00
|
|
|
tier_9_dirs += \
|
|
|
|
js/src/liveconnect \
|
|
|
|
modules/oji \
|
|
|
|
$(NULL)
|
2001-11-05 15:08:31 +03:00
|
|
|
endif
|
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
ifdef MOZ_ENABLE_XLIB
|
|
|
|
tier_9_dirs += gfx/src/xlibrgb widget/src/xlibxtbin
|
2000-08-20 03:33:23 +04:00
|
|
|
endif
|
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
ifdef MOZ_ENABLE_GTK
|
|
|
|
tier_9_dirs += widget/src/gtksuperwin widget/src/gtkxtbin
|
|
|
|
endif
|
|
|
|
|
2002-09-18 06:43:54 +04:00
|
|
|
ifdef MOZ_ENABLE_GTK2
|
|
|
|
tier_9_dirs += widget/src/gtkxtbin
|
|
|
|
endif
|
|
|
|
|
2003-05-02 07:57:15 +04:00
|
|
|
ifdef MOZ_IPCD
|
|
|
|
tier_9_dirs += ipc/ipcd
|
|
|
|
endif
|
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
tier_9_dirs += \
|
1999-12-22 02:55:04 +03:00
|
|
|
modules/libutil \
|
2000-09-14 23:27:23 +04:00
|
|
|
netwerk \
|
1999-11-18 09:03:27 +03:00
|
|
|
uriloader \
|
1999-09-09 02:59:23 +04:00
|
|
|
modules/libpref \
|
|
|
|
modules/libimg \
|
|
|
|
caps \
|
2001-02-22 06:01:34 +03:00
|
|
|
rdf \
|
1999-09-09 02:59:23 +04:00
|
|
|
expat \
|
|
|
|
htmlparser \
|
|
|
|
gfx \
|
2001-08-12 04:38:38 +04:00
|
|
|
modules/libpr0n \
|
2003-03-31 23:44:29 +04:00
|
|
|
sun-java \
|
2000-07-22 05:27:15 +04:00
|
|
|
modules/plugin \
|
1999-09-09 02:59:23 +04:00
|
|
|
dom \
|
|
|
|
view \
|
2003-03-22 08:29:37 +03:00
|
|
|
widget \
|
2001-02-20 00:50:04 +03:00
|
|
|
content \
|
1999-09-09 02:59:23 +04:00
|
|
|
layout \
|
|
|
|
db \
|
2003-03-15 04:04:32 +03:00
|
|
|
xpfe/components/shistory \
|
1999-11-30 01:22:20 +03:00
|
|
|
docshell \
|
1999-09-09 02:59:23 +04:00
|
|
|
webshell \
|
2002-11-09 22:38:43 +03:00
|
|
|
profile \
|
2000-08-10 11:07:13 +04:00
|
|
|
embedding \
|
1999-09-09 02:59:23 +04:00
|
|
|
editor \
|
2003-07-16 04:33:50 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
tier_9_dirs += xpfe/bootstrap/appleevents
|
|
|
|
endif
|
|
|
|
|
|
|
|
tier_9_dirs += \
|
|
|
|
xpfe/appshell \
|
|
|
|
xpfe/browser/public \
|
|
|
|
xpfe/components/sidebar/public \
|
|
|
|
xpfe/components/xremote/public \
|
1999-09-09 02:59:23 +04:00
|
|
|
$(NULL)
|
1998-11-19 01:35:21 +03:00
|
|
|
|
2003-07-20 01:19:12 +04:00
|
|
|
ifdef MOZ_XUL_APP
|
2003-08-09 03:28:27 +04:00
|
|
|
tier_9_dirs += toolkit/components/history/public chrome
|
2003-07-20 01:19:12 +04:00
|
|
|
else
|
|
|
|
tier_9_dirs += xpfe/components/history/public
|
|
|
|
endif
|
|
|
|
|
2003-03-22 08:29:37 +03:00
|
|
|
ifdef ACCESSIBILITY
|
|
|
|
tier_9_dirs += accessible
|
|
|
|
endif
|
|
|
|
|
2001-12-10 07:30:31 +03:00
|
|
|
ifdef MOZ_LDAP_XPCOM
|
2001-12-10 11:06:51 +03:00
|
|
|
tier_9_dirs += directory/xpcom
|
2001-12-10 07:30:31 +03:00
|
|
|
endif
|
|
|
|
|
2004-02-02 02:23:19 +03:00
|
|
|
ifndef MOZ_XUL
|
|
|
|
tier_9_dirs += embedding/minimo/chromelite
|
|
|
|
endif
|
|
|
|
|
2003-08-30 04:20:58 +04:00
|
|
|
#
|
|
|
|
# tier 40 - security
|
|
|
|
#
|
|
|
|
ifdef MOZ_PSM
|
|
|
|
tier_40_dirs += security/manager
|
|
|
|
endif
|
|
|
|
|
2003-07-16 04:33:50 +04:00
|
|
|
#
|
|
|
|
# tier 50 - xpfe & toolkit
|
|
|
|
#
|
|
|
|
|
2000-03-04 04:50:50 +03:00
|
|
|
# This must preceed xpfe
|
|
|
|
ifdef MOZ_JPROF
|
2003-07-16 04:33:50 +04:00
|
|
|
tier_50_dirs += tools/jprof
|
2000-03-04 04:50:50 +03:00
|
|
|
endif
|
|
|
|
|
2003-07-16 04:33:50 +04:00
|
|
|
tier_50_dirs += xpfe themes
|
2001-04-19 07:00:55 +04:00
|
|
|
|
1999-09-26 00:44:48 +04:00
|
|
|
ifdef MOZ_LEAKY
|
2003-07-16 04:33:50 +04:00
|
|
|
tier_50_dirs += tools/leaky
|
1999-09-26 00:44:48 +04:00
|
|
|
endif
|
|
|
|
|
2002-10-07 23:09:05 +04:00
|
|
|
ifdef MOZ_MAPINFO
|
2003-07-16 04:33:50 +04:00
|
|
|
tier_50_dirs += tools/codesighs
|
2002-10-07 23:09:05 +04:00
|
|
|
endif
|
|
|
|
|
2003-04-10 11:13:43 +04:00
|
|
|
ifneq (,$(MOZ_L10N_LANG)$(MOZ_L10N_TOOLS))
|
2003-07-16 04:33:50 +04:00
|
|
|
tier_50_dirs += l10n
|
2003-04-10 11:13:43 +04:00
|
|
|
endif
|
2000-06-27 04:24:48 +04:00
|
|
|
|
2003-06-09 08:31:57 +04:00
|
|
|
ifdef MOZ_XUL_APP
|
2003-07-16 04:33:50 +04:00
|
|
|
tier_50_dirs += toolkit
|
2002-08-07 10:37:13 +04:00
|
|
|
endif
|
|
|
|
|
2003-07-20 01:19:12 +04:00
|
|
|
ifdef MOZ_PHOENIX
|
|
|
|
# xpfe/components/search depends on nsIBookmarksService.idl
|
|
|
|
tier_50_dirs += browser/components/bookmarks/public
|
|
|
|
endif
|
|
|
|
|
2003-07-24 22:34:38 +04:00
|
|
|
# toolkit/xre/ depends on xpinstall, so it must be in tier 50
|
2003-07-16 04:33:50 +04:00
|
|
|
ifdef MOZ_XPINSTALL
|
2003-07-20 01:19:12 +04:00
|
|
|
tier_50_dirs += xpinstall
|
|
|
|
endif
|
2003-07-16 04:33:50 +04:00
|
|
|
|
2003-11-07 13:52:37 +03:00
|
|
|
# mozapps installer needs to be built after xpinstall
|
|
|
|
ifdef MOZ_XUL_APP
|
2003-11-08 01:44:35 +03:00
|
|
|
ifdef MOZ_INSTALLER
|
2003-11-07 13:52:37 +03:00
|
|
|
tier_50_dirs += toolkit/mozapps/installer
|
|
|
|
endif
|
2003-11-08 01:44:35 +03:00
|
|
|
endif
|
2003-11-07 13:52:37 +03:00
|
|
|
|
2003-07-24 22:34:38 +04:00
|
|
|
#
|
|
|
|
# tier 9x - application features
|
|
|
|
#
|
|
|
|
|
2003-07-16 04:33:50 +04:00
|
|
|
ifdef MOZ_JSDEBUGGER
|
|
|
|
tier_93_dirs += js/jsd
|
|
|
|
endif
|
|
|
|
|
2002-03-20 01:30:48 +03:00
|
|
|
ifdef MOZ_EXTENSIONS
|
|
|
|
tier_94_dirs += extensions
|
|
|
|
endif
|
|
|
|
|
2001-12-10 07:30:31 +03:00
|
|
|
ifdef MOZ_MAIL_NEWS
|
|
|
|
tier_97_dirs += mailnews
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MOZ_CALENDAR
|
2002-12-11 07:15:45 +03:00
|
|
|
tier_98_dirs += other-licenses/libical calendar
|
2001-12-10 07:30:31 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# tier 99 - application binaries
|
|
|
|
#
|
|
|
|
|
2003-06-10 02:25:25 +04:00
|
|
|
ifdef MOZ_COMPONENTLIB
|
|
|
|
tier_99_dirs += embedding/componentlib
|
|
|
|
else
|
2001-06-21 00:21:49 +04:00
|
|
|
ifneq (,$(MOZ_STATIC_COMPONENTS)$(MOZ_META_COMPONENTS))
|
2001-12-10 07:30:31 +03:00
|
|
|
tier_99_dirs += modules/staticmod
|
2001-11-13 10:57:31 +03:00
|
|
|
endif
|
2003-06-10 02:25:25 +04:00
|
|
|
endif # MOZ_COMPONENTLIB
|
2001-11-13 10:57:31 +03:00
|
|
|
|
2002-09-02 08:03:07 +04:00
|
|
|
ifdef MOZ_PHOENIX
|
|
|
|
tier_99_dirs += browser
|
2003-04-17 10:14:23 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MOZ_THUNDERBIRD
|
2003-06-09 08:31:57 +04:00
|
|
|
tier_99_dirs += mail
|
2003-04-17 10:14:23 +04:00
|
|
|
endif
|
|
|
|
|
2003-09-24 17:59:37 +04:00
|
|
|
ifdef MOZ_STANDALONE_COMPOSER
|
|
|
|
tier_99_dirs += composer
|
|
|
|
endif
|
|
|
|
|
2003-04-17 10:14:23 +04:00
|
|
|
ifdef MOZ_XUL_APP
|
2002-09-02 08:03:07 +04:00
|
|
|
else
|
2003-04-11 04:56:27 +04:00
|
|
|
ifneq (,$(MOZ_XPFE_COMPONENTS)$(MOZ_XUL))
|
2001-12-10 07:30:31 +03:00
|
|
|
tier_99_dirs += xpfe/bootstrap
|
2002-09-02 08:03:07 +04:00
|
|
|
endif
|
2003-04-03 04:40:57 +04:00
|
|
|
endif
|
2001-04-28 21:26:54 +04:00
|
|
|
|
2003-02-06 23:54:54 +03:00
|
|
|
ifneq (,$(MOZ_ENABLE_GTK)$(MOZ_ENABLE_GTK2))
|
|
|
|
tier_99_dirs += embedding/browser/gtk
|
2002-11-16 05:36:22 +03:00
|
|
|
endif
|
|
|
|
|
2002-12-24 01:32:22 +03:00
|
|
|
# viewer
|
|
|
|
ifneq (,$(ENABLE_TESTS))
|
|
|
|
tier_99_dirs += webshell/tests
|
|
|
|
endif
|
|
|
|
|
|
|
|
# winembed, mfcembed
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
ifneq (,$(ENABLE_TESTS)$(MOZILLA_OFFICIAL))
|
|
|
|
tier_99_dirs += embedding/tests
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2003-04-03 02:53:16 +04:00
|
|
|
# os2embed
|
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
ifneq (,$(ENABLE_TESTS)$(MOZILLA_OFFICIAL))
|
|
|
|
tier_99_dirs += embedding/tests
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
else
|
2000-04-18 13:42:12 +04:00
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
# Standalone build
|
2000-05-04 02:49:47 +04:00
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
DIRS = $(BUILD_MODULE_DIRS)
|
|
|
|
|
2002-10-25 13:48:06 +04:00
|
|
|
# Hack to generate xpidl Makefile
|
|
|
|
ifneq ($(BUILD_MODULES),all)
|
|
|
|
ifneq (,$(findstring xpcom, $(BUILD_MODULE_DIRS)))
|
|
|
|
DIRS := xpcom/typelib $(DIRS)
|
|
|
|
SUBMAKEFILES := xpcom/typelib/Makefile
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
default: $(SUBMAKEFILES)
|
|
|
|
$(MAKE) export
|
|
|
|
$(MAKE) libs
|
|
|
|
|
|
|
|
endif # BUILD_MODULES == all
|
|
|
|
|
|
|
|
STATIC_MAKEFILES := nsprpub directory/c-sdk security/nss
|
2001-04-09 13:38:30 +04:00
|
|
|
|
2000-08-30 05:15:32 +04:00
|
|
|
GARBAGE_DIRS += dist
|
2000-03-17 03:49:15 +03:00
|
|
|
DIST_GARBAGE = config.cache config.log config.status config-defs.h \
|
2000-06-13 03:02:14 +04:00
|
|
|
dependencies.beos config/autoconf.mk config/myrules.mk config/myconfig.mk \
|
2002-08-22 04:50:51 +04:00
|
|
|
unallmakefiles mozilla-config.h \
|
2000-07-07 14:34:45 +04:00
|
|
|
$(topsrcdir)/.mozconfig.mk $(topsrcdir)/.mozconfig.out
|
1998-10-28 06:40:33 +03:00
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
# Build pseudo-external modules first when export is explicitly called
|
2002-01-26 01:29:51 +03:00
|
|
|
export::
|
|
|
|
$(MAKE) -C config export
|
|
|
|
$(MAKE) nspr
|
|
|
|
$(MAKE) ldap
|
2002-10-25 09:59:52 +04:00
|
|
|
ifneq ($(BUILD_MODULES),all)
|
|
|
|
ifneq (,$(findstring xpcom, $(BUILD_MODULE_DIRS)))
|
|
|
|
$(MAKE) -C xpcom/typelib
|
|
|
|
$(MAKE) export-idl
|
|
|
|
endif
|
|
|
|
endif
|
2002-04-26 00:40:00 +04:00
|
|
|
|
|
|
|
install::
|
|
|
|
ifndef MOZ_NATIVE_NSPR
|
|
|
|
$(MAKE) -C nsprpub real_install DESTDIR=$(DESTDIR) libdir=$(mozappdir) includedir=$(includedir)/nspr
|
|
|
|
$(RM) -f $(addprefix $(DESTDIR)$(mozappdir)/$(LIB_PREFIX), $(addsuffix .$(LIB_SUFFIX), nspr4 plds4 plc4))
|
|
|
|
$(RM) -f $(addprefix $(DESTDIR)$(bindir)/,nspr-config compile-et.pl prerr.properties)
|
|
|
|
endif
|
|
|
|
ifdef MOZ_LDAP_XPCOM
|
|
|
|
$(MAKE) -C directory/c-sdk real_install DESTDIR=$(DESTDIR) libdir=$(mozappdir) includedir=$(includedir)/ldap
|
|
|
|
endif
|
|
|
|
|
2000-03-14 09:16:27 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2000-02-24 01:47:39 +03:00
|
|
|
|
2002-10-25 09:59:52 +04:00
|
|
|
# Clean up after pseudo-external modules
|
2002-01-26 01:29:51 +03:00
|
|
|
clean clobber realclean clobber_all distclean::
|
|
|
|
ifndef MOZ_NATIVE_NSPR
|
|
|
|
$(MAKE) -C nsprpub $@
|
|
|
|
endif
|
|
|
|
ifdef MOZ_LDAP_XPCOM
|
2002-03-27 09:31:38 +03:00
|
|
|
$(MAKE) -C directory/c-sdk $@
|
2002-01-26 01:29:51 +03:00
|
|
|
endif
|
|
|
|
|
2001-11-16 10:40:42 +03:00
|
|
|
tier_%:
|
|
|
|
@echo "$@: $($@_dirs)"
|
2001-12-10 09:25:40 +03:00
|
|
|
@$(EXIT_ON_ERROR) \
|
2001-12-10 07:30:31 +03:00
|
|
|
for d in $($@_dirs); do $(UPDATE_TITLE) \
|
|
|
|
$(MAKE) -C $$d export; \
|
|
|
|
done ; \
|
|
|
|
$(PERL) $(MOZILLA_DIR)/config/purge-old-headers.pl $(DIST)/include ;\
|
|
|
|
for d in $($@_dirs); do $(UPDATE_TITLE) \
|
|
|
|
$(MAKE) -C $$d libs; \
|
2001-12-10 09:25:40 +03:00
|
|
|
done
|
2001-11-16 10:40:42 +03:00
|
|
|
#
|
|
|
|
# Individual modules
|
|
|
|
#
|
|
|
|
boehm:
|
|
|
|
ifdef GC_LEAK_DETECTOR
|
|
|
|
$(MAKE) -C gc/boehm
|
|
|
|
endif
|
|
|
|
|
|
|
|
nspr: boehm
|
2002-01-26 01:29:51 +03:00
|
|
|
ifndef MOZ_NATIVE_NSPR
|
|
|
|
$(MAKE) -C nsprpub
|
|
|
|
endif
|
|
|
|
|
|
|
|
ldap:
|
|
|
|
ifdef MOZ_LDAP_XPCOM
|
2002-04-05 07:51:32 +04:00
|
|
|
$(MAKE) -C directory/c-sdk
|
2001-11-16 10:40:42 +03:00
|
|
|
endif
|
|
|
|
|
2001-09-12 10:42:26 +04:00
|
|
|
export::
|
|
|
|
@$(PERL) $(MOZILLA_DIR)/config/purge-old-headers.pl $(DIST)/include
|
|
|
|
|
2000-12-13 00:28:24 +03:00
|
|
|
distclean::
|
|
|
|
cat unallmakefiles | $(XARGS) rm -f
|
|
|
|
rm -f unallmakefiles $(DIST_GARBAGE)
|
2002-03-01 04:01:42 +03:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
rebase:
|
2002-03-07 11:23:11 +03:00
|
|
|
ifdef MOZILLA_OFFICIAL
|
2002-03-01 04:01:42 +03:00
|
|
|
echo rebasing $(DIST)
|
|
|
|
/bin/find $(DIST) -name "*.dll" > rebase.lst
|
|
|
|
rebase -b 60000000 -R . -G rebase.lst
|
2002-03-07 11:23:11 +03:00
|
|
|
rm rebase.lst
|
2002-03-01 04:01:42 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
splitsymbols:
|
2002-03-07 11:23:11 +03:00
|
|
|
ifdef MOZILLA_OFFICIAL
|
2002-03-01 04:01:42 +03:00
|
|
|
echo splitting symbols out of binaries
|
|
|
|
/bin/find $(DIST) -name "*.dll" -exec splitsym {} \;
|
|
|
|
/bin/find $(DIST) -name "*.exe" -exec splitsym {} \;
|
|
|
|
/bin/find $(DIST) -name "*.EXE" -exec splitsym {} \;
|
|
|
|
endif # MOZILLA_OFFICIAL
|
|
|
|
|
2003-05-17 04:58:24 +04:00
|
|
|
signnss:
|
|
|
|
ifdef MOZILLA_OFFICIAL
|
|
|
|
echo signing NSS libs
|
|
|
|
cd $(DIST)/bin; ./shlibsign.exe -v -i softokn3.dll
|
|
|
|
endif # MOZILLA_OFFICIAL
|
|
|
|
|
|
|
|
deliver: splitsymbols rebase signnss
|
2002-03-01 04:01:42 +03:00
|
|
|
|
|
|
|
endif # WINNT
|
2002-03-05 18:22:48 +03:00
|
|
|
|