mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 09:58:57 +00:00
69 lines
2.2 KiB
Makefile
69 lines
2.2 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
STANDALONE_MAKEFILE := 1
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Building XPIDLs effectively consists of two steps:
|
|
#
|
|
# 1) Staging all .idl files to a common directory.
|
|
# 2) Doing everything with the .idl files.
|
|
#
|
|
# Each .idl file is processed into a .h file and typelib information.
|
|
# The .h file shares the same stem as the input file and is installed
|
|
# in the common headers include directory.
|
|
#
|
|
# XPIDL files are logically grouped together by modules. The typelib
|
|
# information for all XPIDLs in the same module is linked together into
|
|
# an .xpt file having the name of the module.
|
|
#
|
|
# As an optimization to reduce overall CPU usage, we process all .idl
|
|
# belonging to a module with a single command invocation. This prevents
|
|
# redundant parsing of .idl files and significantly reduces CPU cycles.
|
|
|
|
# For dependency files.
|
|
idl_deps_dir := .deps
|
|
|
|
dist_idl_dir := $(DIST)/idl
|
|
dist_include_dir := $(DIST)/include
|
|
process_py := $(topsrcdir)/python/mozbuild/mozbuild/action/xpidl-process.py
|
|
|
|
ifdef LIBXUL_SDK
|
|
libxul_sdk_includes := -I$(LIBXUL_SDK)/idl
|
|
endif
|
|
|
|
# TODO we should use py_action, but that would require extra directories to be
|
|
# in the virtualenv.
|
|
%.xpt:
|
|
@echo "$(@F)"
|
|
$(PYTHON_PATH) $(PLY_INCLUDE) -I$(IDL_PARSER_DIR) -I$(IDL_PARSER_CACHE_DIR) \
|
|
$(process_py) --cache-dir $(IDL_PARSER_CACHE_DIR) $(dist_idl_dir) \
|
|
$(dist_include_dir) $(@D) $(idl_deps_dir) $(libxul_sdk_includes) \
|
|
$(basename $(notdir $@)) $($(basename $(notdir $@))_deps)
|
|
|
|
xpidl_modules := @xpidl_modules@
|
|
xpt_files := @xpt_files@
|
|
|
|
@xpidl_rules@
|
|
|
|
depends_files := $(foreach root,$(xpidl_modules),$(idl_deps_dir)/$(root).pp)
|
|
|
|
GARBAGE += $(xpt_files) $(depends_files)
|
|
|
|
xpidl:: $(xpt_files)
|
|
|
|
$(xpt_files): $(process_py) $(call mkdir_deps,$(idl_deps_dir) $(dist_include_dir))
|
|
|
|
define xpt_deps
|
|
$(1): $(call mkdir_deps,$(dir $(1)))
|
|
$(1): $(addsuffix .idl,$(addprefix $(dist_idl_dir)/,$($(basename $(notdir $(1)))_deps)))
|
|
endef
|
|
|
|
$(foreach xpt,$(xpt_files),$(eval $(call xpt_deps,$(xpt))))
|
|
|
|
$(call include_deps,$(depends_files))
|
|
|
|
.PHONY: xpidl
|