| # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- |
| # |
| # This file is part of the Collabora Office project. |
| # |
| # 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/. |
| # |
| |
| $(eval $(call gb_CustomTarget_CustomTarget,sw/source/writerfilter)) |
| |
| writerfilter_WORK := $(gb_CustomTarget_workdir)/sw/source/writerfilter |
| writerfilter_SRC := $(SRCDIR)/sw/source/writerfilter |
| |
| writerfilter_PYTHONCOMMAND := $(call gb_ExternalExecutable_get_command,python) |
| writerfilter_XMLLINTCOMMAND := $(call gb_ExternalExecutable_get_command,xmllint) |
| |
| writerfilter_OOXMLNAMESPACES= \ |
| dml-baseStylesheet \ |
| dml-baseTypes \ |
| dml-chartDrawing \ |
| dml-documentProperties \ |
| dml-graphicalObject \ |
| dml-shape3DCamera \ |
| dml-shape3DLighting \ |
| dml-shape3DScene \ |
| dml-shape3DStyles \ |
| dml-shapeEffects \ |
| dml-shapeGeometry \ |
| dml-shapeLineProperties \ |
| dml-shapeProperties \ |
| dml-styleDefaults \ |
| dml-stylesheet \ |
| dml-textCharacter \ |
| dml-wordprocessingDrawing \ |
| shared-math \ |
| shared-relationshipReference \ |
| sml-customXmlMappings \ |
| vml-main \ |
| vml-officeDrawing \ |
| vml-wordprocessingDrawing \ |
| wp14 \ |
| w14 \ |
| w15 \ |
| a14 \ |
| wml |
| |
| writerfilter_ALL = \ |
| $(writerfilter_GEN_ooxml_Factory_cxx) \ |
| $(writerfilter_GEN_ooxml_Factory_hxx) \ |
| $(writerfilter_GEN_ooxml_FactoryValues_hxx) \ |
| $(writerfilter_GEN_ooxml_QNameToStr_cxx) \ |
| $(writerfilter_GEN_ooxml_ResourceIds_hxx) \ |
| $(writerfilter_GEN_ooxml_Model_validated) \ |
| $(writerfilter_GEN_ooxml_Model_processed) \ |
| $(patsubst %,$(writerfilter_WORK)/ooxml/OOXMLFactory_%.hxx,$(writerfilter_OOXMLNAMESPACES)) \ |
| $(patsubst %,$(writerfilter_WORK)/ooxml/OOXMLFactory_%.cxx,$(writerfilter_OOXMLNAMESPACES)) \ |
| |
| writerfilter_DEP_ooxml_Namespaces_txt=$(gb_CustomTarget_workdir)/oox/generated/misc/namespaces.txt |
| writerfilter_GEN_ooxml_FactoryValues_hxx=$(writerfilter_WORK)/ooxml/OOXMLFactory_values.hxx |
| writerfilter_GEN_ooxml_Factory_cxx=$(writerfilter_WORK)/ooxml/OOXMLFactory_generated.cxx |
| writerfilter_GEN_ooxml_Factory_hxx=$(writerfilter_WORK)/ooxml/OOXMLFactory_generated.hxx |
| writerfilter_GEN_ooxml_Model_validated=$(writerfilter_WORK)/ooxml/model.validated |
| writerfilter_GEN_ooxml_Model_processed=$(writerfilter_WORK)/ooxml/model_preprocessed.xml |
| writerfilter_GEN_ooxml_QNameToStr_cxx=$(writerfilter_WORK)/ooxml/qnametostr.cxx |
| writerfilter_GEN_ooxml_ResourceIds_hxx=$(writerfilter_WORK)/ooxml/resourceids.hxx |
| writerfilter_SRC_ooxml_Model=$(writerfilter_SRC)/ooxml/model.xml |
| writerfilter_SRC_ooxml_Preprocess_py=$(writerfilter_SRC)/ooxml/modelpreprocess.py |
| writerfilter_SRC_ooxml_QNameToStr_py=$(writerfilter_SRC)/ooxml/qnametostr.py |
| writerfilter_SRC_ooxml_ResourceIds_py=$(writerfilter_SRC)/ooxml/resourceids.py |
| |
| $(writerfilter_GEN_ooxml_Factory_cxx) : $(writerfilter_SRC)/ooxml/factoryimpl.py $(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_GEN_ooxml_Model_processed) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $< $(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_GEN_ooxml_Model_processed)) > $@ |
| |
| $(writerfilter_GEN_ooxml_Factory_hxx) : $(writerfilter_SRC)/ooxml/factoryinc.py $(writerfilter_GEN_ooxml_Model_processed) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $< $(writerfilter_GEN_ooxml_Model_processed)) > $@ |
| |
| $(writerfilter_GEN_ooxml_Model_validated) : $(SRCDIR)/sw/documentation/writerfilter/ooxml/model.rng $(writerfilter_SRC_ooxml_Model) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,VAL,1) |
| $(call gb_Helper_abbreviate_dirs,\ |
| $(writerfilter_XMLLINTCOMMAND) --noout --relaxng $(SRCDIR)/sw//documentation/writerfilter/ooxml/model.rng $(writerfilter_SRC_ooxml_Model) > $@ 2>&1 \ |
| || (cat $@; false)) |
| |
| $(writerfilter_GEN_ooxml_Model_processed) : $(writerfilter_SRC_ooxml_Preprocess_py) $(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_GEN_ooxml_Model_validated) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $(writerfilter_SRC_ooxml_Preprocess_py) $(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_SRC_ooxml_Model)) > $@ |
| |
| $(writerfilter_GEN_ooxml_QNameToStr_cxx): $(writerfilter_SRC_ooxml_QNameToStr_py) $(writerfilter_GEN_ooxml_Model_processed) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $(writerfilter_SRC_ooxml_QNameToStr_py) $(writerfilter_GEN_ooxml_Model_processed)) > $@ |
| |
| $(writerfilter_GEN_ooxml_ResourceIds_hxx) : $(writerfilter_SRC_ooxml_ResourceIds_py) $(writerfilter_GEN_ooxml_Model_processed) | $(writerfilter_WORK)/ooxml/.dir |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $(writerfilter_SRC_ooxml_ResourceIds_py) $(writerfilter_GEN_ooxml_Model_processed)) > $@ |
| |
| $(writerfilter_WORK)/ooxml/OOXMLFactory%.cxx : $(writerfilter_SRC)/ooxml/factoryimpl_ns.py $(writerfilter_GEN_ooxml_Model_processed) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $< $(writerfilter_GEN_ooxml_Model_processed) $@) > $@ |
| |
| $(writerfilter_WORK)/ooxml/OOXMLFactory%.hxx : $(writerfilter_SRC)/ooxml/factory_ns.py $(writerfilter_GEN_ooxml_Model_processed) |
| $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1) |
| $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $< $(writerfilter_GEN_ooxml_Model_processed) $@) > $@ |
| |
| |
| $(call gb_CustomTarget_get_target,sw/source/writerfilter) : $(writerfilter_ALL) |
| |
| $(writerfilter_ALL) :| $(call gb_ExternalExecutable_get_dependencies,python) $(call gb_ExternalExecutable_get_dependencies,xmllint) $(writerfilter_WORK)/ooxml/.dir |
| |
| # vim: set noet sw=4 ts=4: |