mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
830df556e6
changes to build system are r=cls, changes to transformiix r=peterv
162 lines
4.8 KiB
Makefile
162 lines
4.8 KiB
Makefile
#
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
#
|
|
# 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 build/unix/modules.mk from the Mozilla source tree.
|
|
#
|
|
# The Initial Developer of the Original Code is Christopher
|
|
# Seawood. Portions created by Christopher Seawood are
|
|
# Copyright (C) 2000 Christopher Seawood. All Rights Reserved.
|
|
#
|
|
#
|
|
|
|
BUILD_MODULE_DIRS := config build include
|
|
BUILD_MODULE_CVS = config build include
|
|
|
|
# client.mk does not have topsrcdir set
|
|
ifndef topsrcdir
|
|
topsrcdir=$(TOPSRCDIR)
|
|
endif
|
|
|
|
ifndef MOZ_NATIVE_NSPR
|
|
# Do not regenerate Makefile for NSPR
|
|
NSPRPUB_DIR = nsprpub
|
|
endif
|
|
|
|
# BM_DIRS_mod: list of directories to traverse from toplevel Makefile
|
|
# BM_DEP_DIRS_mod: list of directories to run "export" over
|
|
# BM_CVS_mod: list of directories to check out of cvs recursively
|
|
# BM_CVS_NS_mod: list of directories to check out of cvs non-recursively
|
|
|
|
ifneq ($(BUILD_MODULES),all)
|
|
|
|
#
|
|
# dbm
|
|
#
|
|
BM_DIRS_dbm = $(NSPRPUB_DIR) dbm
|
|
BM_CVS_dbm = $(BM_DIRS_dbm)
|
|
|
|
#
|
|
# js
|
|
#
|
|
BM_DIRS_js = $(NSPRPUB_DIR) js
|
|
BM_CVS_js = $(NSPRPUB_DIR)
|
|
BM_CVS_NS_js = js js/src js/src/fdlibm
|
|
|
|
#
|
|
# string
|
|
#
|
|
BM_DIRS_string = $(NSPRPUB_DIR) string
|
|
BM_DEP_DIRS_string = intl/unicharutil/public
|
|
BM_CVS_string = $(NSPRPUB_DIR) string
|
|
|
|
#
|
|
# xpidl
|
|
#
|
|
BM_DIRS_xpidl = $(NSPRPUB_DIR) xpcom/typelib
|
|
BM_CVS_xpidl = $(NSPRPUB_DIR) xpcom/typelib/xpt
|
|
BM_CVS_NS_xpidl = xpcom/typelib xpcom/typelib/xpidl
|
|
|
|
# xpcom
|
|
#
|
|
BM_DIRS_xpcom = $(NSPRPUB_DIR) lib/mac/MoreFiles modules/libreg string xpcom
|
|
BM_CVS_xpcom = $(NSPRPUB_DIR) lib/mac/MoreFiles modules/libreg string xpcom
|
|
|
|
#
|
|
# xpconnect
|
|
#
|
|
BM_DIRS_xpconnect = $(BM_DIRS_xpcom) $(BM_DIRS_js) js/src/xpconnect
|
|
BM_DEP_DIRS_xpconnect = $(BM_DEP_DIRS_xpcom)
|
|
BM_CVS_xpconnect = $(BM_CVS_xpcom) $(BM_CVS_js) js/src/xpconnect
|
|
BM_CVS_NS_xpconnect = $(BM_CVS_NS_xpcom) $(BM_CVS_NS_js) js/src/xpconnect
|
|
|
|
#
|
|
# necko
|
|
#
|
|
BM_DIRS_necko = $(BM_DIRS_xpcom) $(BM_DIRS_dbm) netwerk
|
|
BM_DEP_DIRS_necko = $(BM_DEP_DIRS_xpcom) $(BM_DEP_DIRS_dbm) uriloader/exthandler intl/locale/idl intl/strres/public js/src modules/libpref/public
|
|
BM_CVS_necko = $(BM_CVS_xpcom) $(BM_CVS_dbm) netwerk uriloader/exthandler
|
|
BM_CVS_NS_necko = $(BM_CVS_NS_xpcom) intl/locale/idl intl/strres/public modules/libpref/public $(BM_CVS_NS_js)
|
|
|
|
#
|
|
# tranformiix
|
|
#
|
|
BM_DIRS_transformiix = expat extensions/transformiix
|
|
BM_CVS_transformiix = expat extensions/transformiix
|
|
|
|
#
|
|
# psm2
|
|
#
|
|
BM_DIRS_psm2 = $(BM_DIRS_dbm) $(BM_DIRS_js) $(BM_DIRS_xpcom) security/manager
|
|
BM_DEP_DIRS_psm2= \
|
|
$(BM_DEP_DIRS_xpcom) \
|
|
netwerk/base/public netwerk/protocol/http/public netwerk/build \
|
|
netwerk/socket/base \
|
|
uriloader/base \
|
|
intl/locale/idl intl/strres/public \
|
|
dom/public rdf/base/idl xpfe/appshell/public \
|
|
caps/idl \
|
|
layout/html/forms/public \
|
|
gfx/public gfx/idl widget/public layout/base/public docshell/base \
|
|
modules/libpref/public \
|
|
content/base/public \
|
|
intl/locale/public
|
|
BM_CVS_psm2 = $(BM_CVS_dbm) $(BM_CVS_js) $(BM_CVS_xpcom) security/manager \
|
|
dom/public
|
|
BM_CVS_NS_psm2 = \
|
|
$(BM_CVS_NS_dbm) \
|
|
$(BM_CVS_NS_js) \
|
|
$(BM_CVS_NS_xpcom) \
|
|
netwerk/base/public netwerk/protocol/http/public netwerk/build \
|
|
netwerk/socket/base \
|
|
uriloader/base \
|
|
intl/locale/idl intl/strres/public \
|
|
rdf/base/idl xpfe/appshell/public \
|
|
caps/idl \
|
|
layout/html/forms/public \
|
|
gfx/public gfx/idl widget/public layout/base/public docshell/base \
|
|
modules/libpref/public \
|
|
content/base/public \
|
|
intl/locale/public
|
|
|
|
#
|
|
# psm is obsolete. Make it pull psm2 instead
|
|
#
|
|
BM_DIRS_psm = $(BM_DIRS_psm2)
|
|
BM_DEP_DIRS_psm = $(BM_DEP_DIRS_psm2)
|
|
BM_CVS_psm = $(BM_CVS_psm2)
|
|
BM_CVS_NS_psm = $(BM_CVS_NS_psm2)
|
|
|
|
#
|
|
# Tally
|
|
#
|
|
|
|
BUILD_MODULE_DIRS += $(foreach mod,$(BUILD_MODULES), $(BM_DIRS_$(mod)))
|
|
BUILD_MODULE_DEP_DIRS = $(foreach mod,$(BUILD_MODULES), $(BM_DEP_DIRS_$(mod)))
|
|
BUILD_MODULE_CVS += $(foreach mod,$(BUILD_MODULES), $(BM_CVS_$(mod)))
|
|
BUILD_MODULE_CVS_NS = $(foreach mod,$(BUILD_MODULES), $(BM_CVS_NS_$(mod)))
|
|
|
|
# Remove dups from the list to speed up the build
|
|
#
|
|
ifdef PERL
|
|
|
|
BUILD_MODULE_DIRS := $(shell $(PERL) $(topsrcdir)/build/unix/uniq.pl $(BUILD_MODULE_DIRS))
|
|
BUILD_MODULE_DEP_DIRS := $(shell $(PERL) $(topsrcdir)/build/unix/uniq.pl $(BUILD_MODULE_DEP_DIRS))
|
|
|
|
else
|
|
# Since PERL isn't defined, client.mk must've called us so order doesn't matter
|
|
BUILD_MODULE_DIRS := $(sort $(BUILD_MODULE_DIRS))
|
|
BUILD_MODULE_DEP_DIRS := $(sort $(BUILD_MODULE_DEP_DIRS))
|
|
BUILD_MODULE_CVS := $(sort $(BUILD_MODULE_CVS))
|
|
BUILD_MODULE_CVS_NS := $(sort $(BUILD_MODULE_CVS_NS))
|
|
endif
|
|
|
|
endif # BUILD_MODULES
|