gecko-dev/Makefile.in

151 строка
2.6 KiB
Makefile
Исходник Обычный вид История

1999-12-15 12:40:24 +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
#
# 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
#
# 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
# 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
include $(topsrcdir)/build/unix/modules.mk
ifneq ($(BUILD_MODULES),all)
DIRS = $(BUILD_MODULE_DIRS)
else
1999-11-16 20:33:41 +03:00
DIRS = config build
ifdef MOZ_L10N
DIRS += l10n
endif
ifdef MOZ_JAVA_SUPPLEMENT
DIRS += \
java/util \
java/webclient \
$(NULL)
endif
DIRS += $(NSPRPUB_DIR)
# boehm needs to be built before XPCOM
ifdef GC_LEAK_DETECTOR
DIRS += gc/boehm
endif
DIRS += dbm modules/libreg js xpcom js/src/xpconnect
ifdef MOZ_OJI
DIRS += js/src/liveconnect
endif
ifndef MOZ_NATIVE_ZLIB
1999-09-09 02:59:23 +04:00
DIRS += modules/zlib
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
ifdef MOZ_ENABLE_GTK
DIRS += widget/src/gtksuperwin widget/src/gtkxtbin
endif
1999-09-09 02:59:23 +04:00
DIRS += \
widget/timer \
include \
modules/libutil \
2000-03-11 07:33:39 +03:00
security \
1999-09-09 02:59:23 +04:00
netwerk \
uriloader \
1999-09-09 02:59:23 +04:00
intl \
modules/libpref \
modules/libimg \
modules/oji \
modules/plugin \
modules/libjar \
caps \
expat \
htmlparser \
gfx \
dom \
view \
widget \
layout \
db \
rdf \
docshell \
1999-09-09 02:59:23 +04:00
webshell \
2000-02-02 07:12:22 +03:00
embedding \
1999-09-09 02:59:23 +04:00
editor \
sun-java \
profile \
themes \
1999-09-09 02:59:23 +04:00
$(NULL)
# This must preceed xpfe
ifdef MOZ_JPROF
DIRS += tools/jprof
endif
ifdef MOZ_BUILD_XPFE
DIRS += xpfe
endif
DIRS += xpinstall
ifdef MOZ_EXTENSIONS
DIRS += extensions
endif
ifdef MOZ_MAIL_NEWS
1999-09-09 02:59:23 +04:00
DIRS += mailnews
endif
ifdef MOZ_LEAKY
DIRS += tools/leaky
endif
ifdef ENABLE_TESTS
DIRS += xpcom/tests
endif
ifdef MOZ_LDAP_XPCOM
DIRS += directory/c-sdk/ldap directory/xpcom
endif
DIRS += l10n
endif # BUILD_MODULES == all
STATIC_MAKEFILES := $(NSPRPUB_DIR)
GARBAGE += dist
DIST_GARBAGE = config.cache config.log config.status config-defs.h \
dependencies.beos config/autoconf.mk config/myrules.mk config/myconfig.mk \
$(shell cat unallmakefiles) unallmakefiles
include $(topsrcdir)/config/rules.mk