mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
123 lines
2.0 KiB
Makefile
123 lines
2.0 KiB
Makefile
#
|
|
# 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/
|
|
#
|
|
# 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.
|
|
#
|
|
# The Original Code is mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
#
|
|
|
|
DEPTH = .
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIRS = config build
|
|
|
|
#
|
|
ifdef MOZ_L10N
|
|
DIRS += l10n
|
|
endif
|
|
|
|
|
|
ifndef MOZ_NATIVE_NSPR
|
|
ifdef USE_NSPR_AUTOCONF
|
|
DIRS += nsprpub
|
|
else
|
|
DIRS += $(topsrcdir)/nsprpub
|
|
# NSPR does not use Makefile.in
|
|
STATIC_MAKEFILES := $(topsrcdir)/nsprpub
|
|
endif
|
|
endif
|
|
|
|
# boehm needs to be built before XPCOM
|
|
ifdef GC_LEAK_DETECTOR
|
|
DIRS += gc/boehm
|
|
endif
|
|
|
|
DIRS += dbm modules/libreg xpcom
|
|
|
|
ifndef MOZ_NATIVE_ZLIB
|
|
DIRS += modules/zlib
|
|
endif
|
|
|
|
ifndef MOZ_NATIVE_JPEG
|
|
DIRS += jpeg
|
|
endif
|
|
|
|
DIRS += \
|
|
include \
|
|
modules/libutil \
|
|
netwerk \
|
|
uriloader \
|
|
intl \
|
|
js \
|
|
modules/libpref \
|
|
modules/libimg \
|
|
modules/oji \
|
|
modules/plugin \
|
|
modules/libjar \
|
|
caps \
|
|
expat \
|
|
htmlparser \
|
|
widget/timer \
|
|
gfx \
|
|
dom \
|
|
view \
|
|
widget \
|
|
layout \
|
|
db \
|
|
rdf \
|
|
docshell \
|
|
webshell \
|
|
editor \
|
|
sun-java \
|
|
profile \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_BUILD_XPFE
|
|
DIRS += xpfe
|
|
endif
|
|
|
|
DIRS += xpinstall
|
|
|
|
ifdef MOZ_EXTENSIONS
|
|
DIRS += extensions
|
|
endif
|
|
|
|
ifdef MOZ_MAIL_NEWS
|
|
DIRS += mailnews
|
|
endif
|
|
|
|
ifdef MOZ_LEAKY
|
|
DIRS += tools/leaky
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
real_all: all
|
|
|
|
real_export: export
|
|
|
|
real_libs: libs
|
|
|
|
real_install: install
|
|
|
|
real_clobber: clobber
|
|
|
|
real_depend: depend
|