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
|
|
|
|
|
|
|
|
ifneq ($(BUILD_MODULES),all)
|
|
|
|
|
|
|
|
DIRS = $(BUILD_MODULE_DIRS)
|
2000-12-11 09:52:25 +03:00
|
|
|
EXPORT_DIRS = $(BUILD_MODULE_DEP_DIRS)
|
2000-06-28 08:32:15 +04:00
|
|
|
|
2000-04-18 13:42:12 +04:00
|
|
|
else
|
|
|
|
|
1999-11-16 20:33:41 +03:00
|
|
|
DIRS = config build
|
1998-11-11 04:53:49 +03:00
|
|
|
|
2000-03-09 05:08:23 +03:00
|
|
|
ifdef MOZ_JAVA_SUPPLEMENT
|
|
|
|
DIRS += \
|
|
|
|
java/util \
|
|
|
|
java/webclient \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
1999-10-08 05:32:44 +04:00
|
|
|
|
1999-10-19 03:14:16 +04:00
|
|
|
# boehm needs to be built before XPCOM
|
|
|
|
ifdef GC_LEAK_DETECTOR
|
|
|
|
DIRS += gc/boehm
|
|
|
|
endif
|
|
|
|
|
2000-08-11 04:13:39 +04:00
|
|
|
DIRS += $(NSPRPUB_DIR)
|
|
|
|
|
2001-02-21 14:09:35 +03:00
|
|
|
DIRS += dbm modules/libreg js string xpcom js/src/xpconnect
|
2000-05-20 06:45:59 +04:00
|
|
|
|
|
|
|
ifdef MOZ_OJI
|
|
|
|
DIRS += js/src/liveconnect
|
|
|
|
endif
|
1998-11-11 04:53:49 +03:00
|
|
|
|
2001-05-16 00:42:29 +04:00
|
|
|
ifdef MOZ_JSDEBUGGER
|
|
|
|
DIRS += js/jsd
|
|
|
|
endif
|
|
|
|
|
1998-11-11 04:53:49 +03:00
|
|
|
ifndef MOZ_NATIVE_ZLIB
|
1999-09-09 02:59:23 +04:00
|
|
|
DIRS += modules/zlib
|
1998-11-11 04:53:49 +03:00
|
|
|
endif
|
|
|
|
|
1999-02-02 20:39:01 +03:00
|
|
|
ifndef MOZ_NATIVE_JPEG
|
1999-09-09 02:59:23 +04:00
|
|
|
DIRS += jpeg
|
1999-02-02 20:39:01 +03:00
|
|
|
endif
|
|
|
|
|
2000-10-05 08:35:18 +04:00
|
|
|
ifdef MOZ_ENABLE_XLIB
|
|
|
|
DIRS += gfx/src/xlibrgb widget/src/xlibxtbin
|
|
|
|
endif
|
|
|
|
|
2000-04-23 00:45:12 +04:00
|
|
|
ifdef MOZ_ENABLE_GTK
|
|
|
|
DIRS += widget/src/gtksuperwin widget/src/gtkxtbin
|
|
|
|
endif
|
|
|
|
|
2000-09-09 18:18:48 +04:00
|
|
|
# Linux and Solaris installer needs standalone libjar, hence standalone zlib
|
2000-09-11 12:08:24 +04:00
|
|
|
ifneq (,$(filter Linux SunOS,$(OS_ARCH)))
|
2000-08-20 03:33:23 +04:00
|
|
|
DIRS += modules/zlib/standalone
|
|
|
|
endif
|
|
|
|
|
1999-09-09 02:59:23 +04:00
|
|
|
DIRS += \
|
2000-03-02 16:29:03 +03:00
|
|
|
widget/timer \
|
1999-10-09 02:36:46 +04:00
|
|
|
include \
|
1999-12-22 02:55:04 +03:00
|
|
|
modules/libutil \
|
2000-09-14 23:27:23 +04:00
|
|
|
netwerk \
|
2000-09-22 07:46:18 +04:00
|
|
|
modules/mpfilelocprovider \
|
1999-11-18 09:03:27 +03:00
|
|
|
uriloader \
|
1999-09-09 02:59:23 +04:00
|
|
|
intl \
|
|
|
|
modules/libpref \
|
|
|
|
modules/libimg \
|
|
|
|
modules/oji \
|
|
|
|
modules/libjar \
|
|
|
|
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
|
|
|
gfx2 \
|
|
|
|
modules/libpr0n \
|
2000-07-22 05:27:15 +04:00
|
|
|
modules/plugin \
|
1999-09-09 02:59:23 +04:00
|
|
|
dom \
|
|
|
|
view \
|
|
|
|
widget \
|
2001-02-20 00:50:04 +03:00
|
|
|
content \
|
1999-09-09 02:59:23 +04:00
|
|
|
layout \
|
|
|
|
db \
|
1999-11-30 01:22:20 +03:00
|
|
|
docshell \
|
1999-09-09 02:59:23 +04:00
|
|
|
webshell \
|
2000-08-10 11:07:13 +04:00
|
|
|
embedding \
|
1999-09-09 02:59:23 +04:00
|
|
|
editor \
|
|
|
|
sun-java \
|
|
|
|
profile \
|
2000-08-10 10:43:05 +04:00
|
|
|
themes \
|
1999-09-09 02:59:23 +04:00
|
|
|
$(NULL)
|
1998-11-19 01:35:21 +03:00
|
|
|
|
2001-08-17 07:13:07 +04:00
|
|
|
ifdef ACCESSIBILITY
|
|
|
|
DIRS += accessible
|
|
|
|
endif
|
|
|
|
|
2000-03-04 04:50:50 +03:00
|
|
|
# This must preceed xpfe
|
|
|
|
ifdef MOZ_JPROF
|
|
|
|
DIRS += tools/jprof
|
|
|
|
endif
|
|
|
|
|
1999-11-16 18:56:31 +03:00
|
|
|
DIRS += xpfe
|
|
|
|
|
2001-04-19 07:00:55 +04:00
|
|
|
DIRS += xpinstall
|
|
|
|
|
2001-04-14 07:20:48 +04:00
|
|
|
ifdef MOZ_PSM
|
2001-05-10 07:00:37 +04:00
|
|
|
DIRS += security/manager
|
2001-04-14 07:20:48 +04:00
|
|
|
endif
|
|
|
|
|
2001-06-20 14:57:16 +04:00
|
|
|
ifdef MOZ_LDAP_XPCOM
|
|
|
|
DIRS += directory/c-sdk/ldap directory/xpcom
|
|
|
|
endif
|
|
|
|
|
1999-11-16 18:56:31 +03:00
|
|
|
ifdef MOZ_EXTENSIONS
|
|
|
|
DIRS += extensions
|
1999-02-18 07:19:43 +03:00
|
|
|
endif
|
1998-10-28 06:40:33 +03:00
|
|
|
|
1999-02-02 22:34:49 +03:00
|
|
|
ifdef MOZ_MAIL_NEWS
|
1999-09-09 02:59:23 +04:00
|
|
|
DIRS += mailnews
|
1999-02-02 22:34:49 +03:00
|
|
|
endif
|
|
|
|
|
1999-09-26 00:44:48 +04:00
|
|
|
ifdef MOZ_LEAKY
|
|
|
|
DIRS += tools/leaky
|
|
|
|
endif
|
|
|
|
|
2000-03-02 16:29:03 +03:00
|
|
|
ifdef ENABLE_TESTS
|
|
|
|
DIRS += xpcom/tests
|
|
|
|
endif
|
|
|
|
|
2000-06-27 04:24:48 +04:00
|
|
|
DIRS += l10n
|
|
|
|
|
2001-06-21 00:21:49 +04:00
|
|
|
ifneq (,$(MOZ_STATIC_COMPONENTS)$(MOZ_META_COMPONENTS))
|
2000-11-22 02:40:34 +03:00
|
|
|
DIRS += modules/staticmod
|
|
|
|
endif
|
|
|
|
|
2001-04-28 21:26:54 +04:00
|
|
|
DIRS += xpfe/bootstrap
|
|
|
|
|
2000-04-18 13:42:12 +04:00
|
|
|
endif # BUILD_MODULES == all
|
|
|
|
|
2001-03-29 10:57:35 +04:00
|
|
|
STATIC_MAKEFILES := $(NSPRPUB_DIR) directory/c-sdk/ldap
|
2000-05-04 02:49:47 +04:00
|
|
|
|
2001-04-16 14:48:48 +04:00
|
|
|
ifdef MOZ_PSM
|
|
|
|
STATIC_MAKEFILES += security/nss
|
2001-04-09 13:38:30 +04:00
|
|
|
endif
|
|
|
|
|
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 \
|
2000-12-13 00:28:24 +03:00
|
|
|
unallmakefiles \
|
2000-07-07 14:34:45 +04:00
|
|
|
$(topsrcdir)/.mozconfig.mk $(topsrcdir)/.mozconfig.out
|
1998-10-28 06:40:33 +03:00
|
|
|
|
2000-03-14 09:16:27 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2000-02-24 01:47:39 +03:00
|
|
|
|
2000-12-11 09:52:25 +03:00
|
|
|
export::
|
|
|
|
+$(LOOP_OVER_EXPORT_DIRS)
|
|
|
|
|
2000-12-13 00:28:24 +03:00
|
|
|
distclean::
|
|
|
|
cat unallmakefiles | $(XARGS) rm -f
|
|
|
|
rm -f unallmakefiles $(DIST_GARBAGE)
|
|
|
|
|