# $Id: Config.kmk $ ## @file # kBuild Configuration file for the manual. # # # Copyright (C) 2010-2019 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; # you can redistribute it and/or modify it under the terms of the GNU # General Public License (GPL) as published by the Free Software # Foundation, in version 2 as it comes in the "COPYING" file of the # VirtualBox OSE distribution. VirtualBox OSE is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. # ifndef VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED = 1 # Include the top-level configure file. ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED include $(PATH_ROOT)/Config.kmk endif # # Globals. # # Source location. VBOX_PATH_MANUAL_SRC := $(PATH_ROOT)/doc/manual # Output location. VBOX_PATH_MANUAL_OUTBASE := $(PATH_OBJ)/manual ## List of refentry files (manpages). VBOX_MANUAL_XML_REFENTRY_FILES := \ man_VBoxManage-mediumio.xml \ man_VBoxManage-debugvm.xml \ man_VBoxManage-extpack.xml \ man_VBoxManage-unattended.xml # Tool locations. ifndef VBOX_OSE # use docbook from our tools directory VBOX_PATH_DOCBOOK ?= $(PATH_DEVTOOLS)/common/DocBook/v1.69.1 VBOX_PATH_DOCBOOK_DTD ?= $(PATH_DEVTOOLS)/common/docbook-xml/v4.5 else # use docbook of the build host VBOX_PATH_DOCBOOK ?= /usr/share/xml/docbook/stylesheet/docbook-xsl VBOX_PATH_DOCBOOK_DTD ?= /usr/share/xml/docbook/schema/dtd/4.5 endif VBOX_XML_CATALOG ?= $(VBOX_PATH_MANUAL_OUTBASE)/catalog VBOX_XML_CATALOG_DOCBOOK ?= $(VBOX_PATH_MANUAL_OUTBASE)/docbook VBOX_XML_CATALOG_MANUAL ?= $(VBOX_PATH_MANUAL_OUTBASE)/manual VBOX_XML_ENTITIES ?= $(VBOX_PATH_MANUAL_OUTBASE)/all-entities.ent # xsltproc with the catalog trick if applicable (set XML_DEBUG_CATALOG to # non-zero value to debug file/uri resolution through the catalogs, using # one of them is enough, they show the same information). ifdef VBOX_XML_CATALOG VBOX_XSLTPROC_WITH_CAT = $(REDIRECT) -E "XML_CATALOG_FILES=$(VBOX_XML_CATALOG)" -E "XML_DEBUG_CATALOG=" $1 -- \ $(VBOX_XSLTPROC) --nonet --xinclude $(VBOX_XSLTPROC_OPTS) VBOX_XMLLINT_WITH_CAT = $(REDIRECT) -E "XML_CATALOG_FILES=$(VBOX_XML_CATALOG)" -E "XML_DEBUG_CATALOG=" -- \ $(VBOX_XMLLINT) --nonet --xinclude --noout $(VBOX_XMLLINT_OPTS) else VBOX_XSLTPROC_WITH_CAT = $(if $(1), $(REDIRECT) $1 --,) $(VBOX_XSLTPROC) --nonet --xinclude $(VBOX_XSLTPROC_OPTS) VBOX_XMLLINT_WITH_CAT = $(VBOX_XMLLINT) --nonet --xinclude --noout $(VBOX_XMLLINT_OPTS) endif ## # Emits rules for preprocessing refentry sources (applying remarks element), # and for producing the actual man pages. # # $(evalcall2 def_vbox_refentry_to_manpage) # @param 1 The output directory. # @param 2 The XML file name (no path). # @param 3 The XML file with full path. define def_vbox_refentry_preprocess_for_manpage $(1)/$(2): \ $(3) \ $$(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-manpage-preprocessing.xsl \ $$(VBOX_XML_CATALOG) $$(VBOX_XML_CATALOG_DOCBOOK) $$(VBOX_XML_CATALOG_MANUAL) \ $$(VBOX_VERSION_STAMP) | $$$$(dir $$$$@) $$(call MSG_TOOL,xsltproc $$(notdir $$(firstword $$(filter %.xsl,$$^))),,$$(firstword $$(filter %.xml,$$^)),$$@) $$(QUIET)$$(RM) -f "$$@" $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT) --output $$@ \ $$(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-manpage-preprocessing.xsl $$< if defined(VBOX_HAVE_XMLLINT) && "$(USER)" == "bird" # Effing stuff happends on build servers, probably kmk related... $$(VBOX_XMLLINT_WITH_CAT) --dtdvalid $$(VBOX_PATH_DOCBOOK_DTD)/docbookx.dtd $$@ endif endef ## # Generate a single header file containing everything (no C file). # # @param 1 Destination file. # @param 2 Full source file path. # @param 3 Help infix. define def_vbox_single_refentry_to_h $(1).ts +| $(1): \ $$(VBOX_DOCBOOK_REFENTRY_TO_C_HELP) \ $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) \ $(2) \ $$(VBOX_XML_CATALOG) $$(VBOX_XML_CATALOG_DOCBOOK) $$(VBOX_XML_CATALOG_MANUAL) $(MAKEFILE) | $$$$(dir $$$$@) $$(call MSG_TOOL,xsltproc $$(notdir $$(firstword $$(filter %.xsl,$$^))),,$$(filter %.xml,$$^),$$(patsubst %.ts,%,$$@)) $$(QUIET)$$(APPEND) -tn "$$@" \ '/* Autogenerated by $$(notdir $$(filter %.xsl,$$^)), do not edit! */' \ '' \ '#include ' \ '' \ 'typedef enum HELP_CMD_$(3)' \ '{' \ ' HELP_CMD_INVALID = 0,' $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") \ --stringparam 'g_sMode' 'cmd' $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) $(2) $$(QUIET)$$(APPEND) -n "$$@" \ ' HELP_CMD_END' \ '} HELP_CMD_VBOXMANAGE;' \ '' $$(NLTAB)$$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") \ --stringparam 'g_sMode' 'subcmd' $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) $(2) $$(QUIET)$$(APPEND) -n "$$@" \ '' $$(NLTAB)$$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") $$(VBOX_DOCBOOK_REFENTRY_TO_C_HELP) $(2) $$(QUIET)$$(APPEND) -n "$$@" \ '' \ '/* end of file */' $$(QUIET)$$(CP) --changed -- "$$@" "$$(patsubst %.ts,%,$$@)" endef # # Make sure we've got a rule to make the output directory. # BLDDIRS += $(VBOX_PATH_MANUAL_OUTBASE) ifdef VBOX_XML_CATALOG # Trickery for making sure that the file:/// URLs end up with exactly 3 # slashes, both on Unixy OSes (where the absolute path contributes one more, # and some very picky xsltproc variants are floating around which do not work # quite correctly with file:////, doing incorrect filename transformations) # and on Windows (where the absolute path starts with a drive letter). VBOX_FILE_URL_MAYBE_SLASH = $(if $(eq $(KBUILD_HOST),win),/,) # # To avoid network I/O for fetching DTDs, we generate catalogs mapping the public # entity IDs to local files. (Obviously, only done when we have local files.) # # Create a catalog file for xsltproc that points to docbook catalog. $(VBOX_XML_CATALOG): $(MAKEFILE_CURRENT) | $$(dir $$@) $(call MSG_L1,Creating catalog $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ '' # Create a docbook catalog file for xsltproc that points to the local docbook files. $(VBOX_XML_CATALOG_DOCBOOK): $(MAKEFILE_CURRENT) | $$(dir $$@) $(call MSG_L1,Creating catalog $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ '' # Create a docbook catalog file for xsltproc that points to the local manual files in non-default locations $(VBOX_XML_CATALOG_MANUAL): $(MAKEFILE_CURRENT) | $$(dir $$@) $(call MSG_L1,Creating catalog $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ '' endif # VBOX_XML_CATALOG ifdef VBOX_XML_ENTITIES $(VBOX_XML_ENTITIES): $(MAKEFILE_CURRENT) | $$(dir $$@) $(call MSG_L1,Creating entities $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ 'Oracle VM VirtualBox'\'' >' \ '' \ '' \ '' \ '' endif # VBOX_XML_ENTITIES # # Generate rules for editing the refentry to C/H style sheets. # VBOX_DOCBOOK_REFENTRY_TO_C_HELP = $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-C-help.xsl VBOX_DOCBOOK_REFENTRY_TO_H_HELP = $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-H-help.xsl # # Manual dependency. # $(VBOX_PATH_MANUAL_OUTBASE)/docbook-refentry-to-C-help.xsl: $(VBOX_PATH_MANUAL_SRC)/common-formatcfg.xsl endif # !defined(VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED)