Rename the *.in files under tools read by configure to *.src, resulting to replace the @...@ markers only at build time.
As some of the markers are local to tools/configure, introduce config/Tools-paths.mk.in and add the related make variables to it. Add Tools-paths to the PATH_FILES make variable in order to include the definitions for replacing themin the *.src files. Add the generated files to the distclean target. Signed-off-by: Juergen Gross <[email protected]> --- .gitignore | 1 + Config.mk | 2 +- config/Tools-paths.mk.in | 10 +++++++++ tools/configure | 21 ++----------------- tools/configure.ac | 19 +---------------- tools/hotplug/FreeBSD/Makefile | 8 ++++++- .../rc.d/{xencommons.in => xencommons.src} | 0 ...xendriverdomain.in => xendriverdomain.src} | 0 tools/hotplug/Linux/Makefile | 11 +++++++++- ...xencommons.in => sysconfig.xencommons.src} | 0 ...xendomains.in => sysconfig.xendomains.src} | 0 .../{xen-watchdog.in => xen-watchdog.src} | 0 .../init.d/{xencommons.in => xencommons.src} | 0 .../init.d/{xendomains.in => xendomains.src} | 0 ...xendriverdomain.in => xendriverdomain.src} | 0 ...launch-xenstore.in => launch-xenstore.src} | 0 .../Linux/{vif-setup.in => vif-setup.src} | 0 ...common.sh.in => xen-hotplug-common.sh.src} | 0 .../Linux/{xendomains.in => xendomains.src} | 0 tools/hotplug/NetBSD/Makefile | 8 ++++++- .../rc.d/{xencommons.in => xencommons.src} | 0 ...xendriverdomain.in => xendriverdomain.src} | 0 tools/hotplug/common/Makefile | 5 ++++- .../{hotplugpath.sh.in => hotplugpath.sh.src} | 0 tools/ocaml/libs/xs/Makefile | 7 +++++++ .../libs/xs/{paths.ml.in => paths.ml.src} | 0 tools/ocaml/xenstored/Makefile | 7 ++++++- ...oxenstored.conf.in => oxenstored.conf.src} | 0 .../xenstored/{paths.ml.in => paths.ml.src} | 0 29 files changed, 56 insertions(+), 43 deletions(-) create mode 100644 config/Tools-paths.mk.in rename tools/hotplug/FreeBSD/rc.d/{xencommons.in => xencommons.src} (100%) rename tools/hotplug/FreeBSD/rc.d/{xendriverdomain.in => xendriverdomain.src} (100%) rename tools/hotplug/Linux/init.d/{sysconfig.xencommons.in => sysconfig.xencommons.src} (100%) rename tools/hotplug/Linux/init.d/{sysconfig.xendomains.in => sysconfig.xendomains.src} (100%) rename tools/hotplug/Linux/init.d/{xen-watchdog.in => xen-watchdog.src} (100%) rename tools/hotplug/Linux/init.d/{xencommons.in => xencommons.src} (100%) rename tools/hotplug/Linux/init.d/{xendomains.in => xendomains.src} (100%) rename tools/hotplug/Linux/init.d/{xendriverdomain.in => xendriverdomain.src} (100%) rename tools/hotplug/Linux/{launch-xenstore.in => launch-xenstore.src} (100%) rename tools/hotplug/Linux/{vif-setup.in => vif-setup.src} (100%) rename tools/hotplug/Linux/{xen-hotplug-common.sh.in => xen-hotplug-common.sh.src} (100%) rename tools/hotplug/Linux/{xendomains.in => xendomains.src} (100%) rename tools/hotplug/NetBSD/rc.d/{xencommons.in => xencommons.src} (100%) rename tools/hotplug/NetBSD/rc.d/{xendriverdomain.in => xendriverdomain.src} (100%) rename tools/hotplug/common/{hotplugpath.sh.in => hotplugpath.sh.src} (100%) rename tools/ocaml/libs/xs/{paths.ml.in => paths.ml.src} (100%) rename tools/ocaml/xenstored/{oxenstored.conf.in => oxenstored.conf.src} (100%) rename tools/ocaml/xenstored/{paths.ml.in => paths.ml.src} (100%) diff --git a/.gitignore b/.gitignore index d83427aba8..57d54f676f 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,7 @@ config.status config.cache config/Toplevel.mk config/Paths.mk +config/Tools-paths.mk dist/* extras/ diff --git a/Config.mk b/Config.mk index 0ea1640371..713fb5eb89 100644 --- a/Config.mk +++ b/Config.mk @@ -159,7 +159,7 @@ define move-if-changed if ! cmp -s $(1) $(2); then mv -f $(1) $(2); else rm -f $(1); fi endef -PATH_FILES := Paths +PATH_FILES := Paths Tools-paths INC_FILES := $(foreach f, $(PATH_FILES), $(XEN_ROOT)/config/$(f).mk) include $(INC_FILES) diff --git a/config/Tools-paths.mk.in b/config/Tools-paths.mk.in new file mode 100644 index 0000000000..ac6298e761 --- /dev/null +++ b/config/Tools-paths.mk.in @@ -0,0 +1,10 @@ +-include $(XEN_ROOT)/config/Paths.mk + +XENSTORED := @XENSTORED@ +XENSTORED_KVA := @XENSTORED_KVA@ +XENSTORED_PORT := @XENSTORED_PORT@ +XEN_RUN_STORED := @XEN_RUN_STORED@ + +LINUX_BACKEND_MODULES := @LINUX_BACKEND_MODULES@ + +qemu_xen_path := @qemu_xen_path@ diff --git a/tools/configure b/tools/configure index 3111f5688c..479c7c9a3c 100755 --- a/tools/configure +++ b/tools/configure @@ -2742,7 +2742,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -ac_config_files="$ac_config_files ../config/Tools.mk hotplug/common/hotplugpath.sh hotplug/FreeBSD/rc.d/xencommons hotplug/FreeBSD/rc.d/xendriverdomain hotplug/Linux/init.d/sysconfig.xencommons hotplug/Linux/init.d/sysconfig.xendomains hotplug/Linux/init.d/xen-watchdog hotplug/Linux/init.d/xencommons hotplug/Linux/init.d/xendomains hotplug/Linux/init.d/xendriverdomain hotplug/Linux/launch-xenstore hotplug/Linux/vif-setup hotplug/Linux/xen-hotplug-common.sh hotplug/Linux/xendomains hotplug/NetBSD/rc.d/xencommons hotplug/NetBSD/rc.d/xendriverdomain ocaml/libs/xs/paths.ml ocaml/xenstored/paths.ml ocaml/xenstored/oxenstored.conf" +ac_config_files="$ac_config_files ../config/Tools.mk ../config/Tools-paths.mk" ac_config_headers="$ac_config_headers config.h" @@ -11268,24 +11268,7 @@ for ac_config_target in $ac_config_targets do case $ac_config_target in "../config/Tools.mk") CONFIG_FILES="$CONFIG_FILES ../config/Tools.mk" ;; - "hotplug/common/hotplugpath.sh") CONFIG_FILES="$CONFIG_FILES hotplug/common/hotplugpath.sh" ;; - "hotplug/FreeBSD/rc.d/xencommons") CONFIG_FILES="$CONFIG_FILES hotplug/FreeBSD/rc.d/xencommons" ;; - "hotplug/FreeBSD/rc.d/xendriverdomain") CONFIG_FILES="$CONFIG_FILES hotplug/FreeBSD/rc.d/xendriverdomain" ;; - "hotplug/Linux/init.d/sysconfig.xencommons") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/init.d/sysconfig.xencommons" ;; - "hotplug/Linux/init.d/sysconfig.xendomains") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/init.d/sysconfig.xendomains" ;; - "hotplug/Linux/init.d/xen-watchdog") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/init.d/xen-watchdog" ;; - "hotplug/Linux/init.d/xencommons") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/init.d/xencommons" ;; - "hotplug/Linux/init.d/xendomains") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/init.d/xendomains" ;; - "hotplug/Linux/init.d/xendriverdomain") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/init.d/xendriverdomain" ;; - "hotplug/Linux/launch-xenstore") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/launch-xenstore" ;; - "hotplug/Linux/vif-setup") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/vif-setup" ;; - "hotplug/Linux/xen-hotplug-common.sh") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/xen-hotplug-common.sh" ;; - "hotplug/Linux/xendomains") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/xendomains" ;; - "hotplug/NetBSD/rc.d/xencommons") CONFIG_FILES="$CONFIG_FILES hotplug/NetBSD/rc.d/xencommons" ;; - "hotplug/NetBSD/rc.d/xendriverdomain") CONFIG_FILES="$CONFIG_FILES hotplug/NetBSD/rc.d/xendriverdomain" ;; - "ocaml/libs/xs/paths.ml") CONFIG_FILES="$CONFIG_FILES ocaml/libs/xs/paths.ml" ;; - "ocaml/xenstored/paths.ml") CONFIG_FILES="$CONFIG_FILES ocaml/xenstored/paths.ml" ;; - "ocaml/xenstored/oxenstored.conf") CONFIG_FILES="$CONFIG_FILES ocaml/xenstored/oxenstored.conf" ;; + "../config/Tools-paths.mk") CONFIG_FILES="$CONFIG_FILES ../config/Tools-paths.mk" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "hotplug/Linux/systemd/proc-xen.mount") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/systemd/proc-xen.mount" ;; "hotplug/Linux/systemd/xen-init-dom0.service") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/systemd/xen-init-dom0.service" ;; diff --git a/tools/configure.ac b/tools/configure.ac index 285b4ea128..ecd45e782e 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -7,24 +7,7 @@ AC_INIT([Xen Hypervisor Tools], m4_esyscmd([../version.sh ../xen/Makefile]), AC_CONFIG_SRCDIR([libs/light/libxl.c]) AC_CONFIG_FILES([ ../config/Tools.mk -hotplug/common/hotplugpath.sh -hotplug/FreeBSD/rc.d/xencommons -hotplug/FreeBSD/rc.d/xendriverdomain -hotplug/Linux/init.d/sysconfig.xencommons -hotplug/Linux/init.d/sysconfig.xendomains -hotplug/Linux/init.d/xen-watchdog -hotplug/Linux/init.d/xencommons -hotplug/Linux/init.d/xendomains -hotplug/Linux/init.d/xendriverdomain -hotplug/Linux/launch-xenstore -hotplug/Linux/vif-setup -hotplug/Linux/xen-hotplug-common.sh -hotplug/Linux/xendomains -hotplug/NetBSD/rc.d/xencommons -hotplug/NetBSD/rc.d/xendriverdomain -ocaml/libs/xs/paths.ml -ocaml/xenstored/paths.ml -ocaml/xenstored/oxenstored.conf +../config/Tools-paths.mk ]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR([../]) diff --git a/tools/hotplug/FreeBSD/Makefile b/tools/hotplug/FreeBSD/Makefile index a6552c9884..0ad4372687 100644 --- a/tools/hotplug/FreeBSD/Makefile +++ b/tools/hotplug/FreeBSD/Makefile @@ -8,6 +8,11 @@ XEN_SCRIPT_DATA := XEN_RCD_PROG := rc.d/xencommons rc.d/xendriverdomain +GEN_FILES := rc.d/xencommons rc.d/xendriverdomain + +rc.d/%:: rc.d/%.src + $(apply-build-vars) + .PHONY: all all: @@ -35,7 +40,7 @@ uninstall-scripts: rm -f $(addprefix $(DESTDIR)$(XEN_SCRIPT_DIR)/, $(XEN_SCRIPT_DATA)) .PHONY: install-rcd -install-rcd: +install-rcd: $(GEN_FILES) $(INSTALL_DIR) $(DESTDIR)$(INITD_DIR) set -e; for i in $(XEN_RCD_PROG); \ do \ @@ -51,3 +56,4 @@ clean: .PHONY: distclean distclean: clean + rm -rf $(GEN_FILES) diff --git a/tools/hotplug/FreeBSD/rc.d/xencommons.in b/tools/hotplug/FreeBSD/rc.d/xencommons.src similarity index 100% rename from tools/hotplug/FreeBSD/rc.d/xencommons.in rename to tools/hotplug/FreeBSD/rc.d/xencommons.src diff --git a/tools/hotplug/FreeBSD/rc.d/xendriverdomain.in b/tools/hotplug/FreeBSD/rc.d/xendriverdomain.src similarity index 100% rename from tools/hotplug/FreeBSD/rc.d/xendriverdomain.in rename to tools/hotplug/FreeBSD/rc.d/xendriverdomain.src diff --git a/tools/hotplug/Linux/Makefile b/tools/hotplug/Linux/Makefile index 9a7b3a3515..59f7bab96b 100644 --- a/tools/hotplug/Linux/Makefile +++ b/tools/hotplug/Linux/Makefile @@ -26,6 +26,14 @@ XEN_SCRIPT_DATA := xen-script-common.sh locking.sh logging.sh XEN_SCRIPT_DATA += xen-hotplug-common.sh xen-network-common.sh vif-common.sh XEN_SCRIPT_DATA += block-common.sh +GEN_FILES := launch-xenstore vif-setup xendomains xen-hotplug-common.sh +GEN_FILES += init.d/sysconfig.xendomains init.d/xen-watchdog +GEN_FILES += init.d/xencommons init.d/xendomains +GEN_FILES += init.d/xendriverdomain init.d/sysconfig.xencommons + +init.d/%:: init.d/%.src + $(apply-build-vars) + .PHONY: all all: subdirs-all @@ -37,7 +45,7 @@ uninstall: uninstall-initd uninstall-scripts subdirs-uninstall # See docs/misc/distro_mapping.txt for INITD_DIR location .PHONY: install-initd -install-initd: +install-initd: $(GEN_FILES) $(INSTALL_DIR) $(DESTDIR)$(INITD_DIR) $(INSTALL_DIR) $(DESTDIR)$(SYSCONFIG_DIR) $(INSTALL_DIR) $(DESTDIR)$(LIBEXEC_BIN) @@ -81,3 +89,4 @@ clean: subdirs-clean .PHONY: distclean distclean: clean + rm -rf $(GEN_FILES) diff --git a/tools/hotplug/Linux/init.d/sysconfig.xencommons.in b/tools/hotplug/Linux/init.d/sysconfig.xencommons.src similarity index 100% rename from tools/hotplug/Linux/init.d/sysconfig.xencommons.in rename to tools/hotplug/Linux/init.d/sysconfig.xencommons.src diff --git a/tools/hotplug/Linux/init.d/sysconfig.xendomains.in b/tools/hotplug/Linux/init.d/sysconfig.xendomains.src similarity index 100% rename from tools/hotplug/Linux/init.d/sysconfig.xendomains.in rename to tools/hotplug/Linux/init.d/sysconfig.xendomains.src diff --git a/tools/hotplug/Linux/init.d/xen-watchdog.in b/tools/hotplug/Linux/init.d/xen-watchdog.src similarity index 100% rename from tools/hotplug/Linux/init.d/xen-watchdog.in rename to tools/hotplug/Linux/init.d/xen-watchdog.src diff --git a/tools/hotplug/Linux/init.d/xencommons.in b/tools/hotplug/Linux/init.d/xencommons.src similarity index 100% rename from tools/hotplug/Linux/init.d/xencommons.in rename to tools/hotplug/Linux/init.d/xencommons.src diff --git a/tools/hotplug/Linux/init.d/xendomains.in b/tools/hotplug/Linux/init.d/xendomains.src similarity index 100% rename from tools/hotplug/Linux/init.d/xendomains.in rename to tools/hotplug/Linux/init.d/xendomains.src diff --git a/tools/hotplug/Linux/init.d/xendriverdomain.in b/tools/hotplug/Linux/init.d/xendriverdomain.src similarity index 100% rename from tools/hotplug/Linux/init.d/xendriverdomain.in rename to tools/hotplug/Linux/init.d/xendriverdomain.src diff --git a/tools/hotplug/Linux/launch-xenstore.in b/tools/hotplug/Linux/launch-xenstore.src similarity index 100% rename from tools/hotplug/Linux/launch-xenstore.in rename to tools/hotplug/Linux/launch-xenstore.src diff --git a/tools/hotplug/Linux/vif-setup.in b/tools/hotplug/Linux/vif-setup.src similarity index 100% rename from tools/hotplug/Linux/vif-setup.in rename to tools/hotplug/Linux/vif-setup.src diff --git a/tools/hotplug/Linux/xen-hotplug-common.sh.in b/tools/hotplug/Linux/xen-hotplug-common.sh.src similarity index 100% rename from tools/hotplug/Linux/xen-hotplug-common.sh.in rename to tools/hotplug/Linux/xen-hotplug-common.sh.src diff --git a/tools/hotplug/Linux/xendomains.in b/tools/hotplug/Linux/xendomains.src similarity index 100% rename from tools/hotplug/Linux/xendomains.in rename to tools/hotplug/Linux/xendomains.src diff --git a/tools/hotplug/NetBSD/Makefile b/tools/hotplug/NetBSD/Makefile index 1cd3db2ccb..7953fd4360 100644 --- a/tools/hotplug/NetBSD/Makefile +++ b/tools/hotplug/NetBSD/Makefile @@ -12,6 +12,11 @@ XEN_SCRIPTS += qemu-ifup XEN_SCRIPT_DATA := XEN_RCD_PROG := rc.d/xencommons rc.d/xendomains rc.d/xen-watchdog rc.d/xendriverdomain +GEN_FILES := rc.d/xencommons rc.d/xendriverdomain + +rc.d/%:: rc.d/%.src + $(apply-build-vars) + .PHONY: all all: @@ -39,7 +44,7 @@ uninstall-scripts: rm -f $(addprefix $(DESTDIR)$(XEN_SCRIPT_DIR)/, $(XEN_SCRIPT_DATA)) .PHONY: install-rcd -install-rcd: +install-rcd: $(GEN_FILES) $(INSTALL_DIR) $(DESTDIR)$(INITD_DIR) set -e; for i in $(XEN_RCD_PROG); \ do \ @@ -57,3 +62,4 @@ clean: .PHONY: distclean distclean: clean + rm -rf $(GEN_FILES) diff --git a/tools/hotplug/NetBSD/rc.d/xencommons.in b/tools/hotplug/NetBSD/rc.d/xencommons.src similarity index 100% rename from tools/hotplug/NetBSD/rc.d/xencommons.in rename to tools/hotplug/NetBSD/rc.d/xencommons.src diff --git a/tools/hotplug/NetBSD/rc.d/xendriverdomain.in b/tools/hotplug/NetBSD/rc.d/xendriverdomain.src similarity index 100% rename from tools/hotplug/NetBSD/rc.d/xendriverdomain.in rename to tools/hotplug/NetBSD/rc.d/xendriverdomain.src diff --git a/tools/hotplug/common/Makefile b/tools/hotplug/common/Makefile index 62afe1019e..e9cbd35881 100644 --- a/tools/hotplug/common/Makefile +++ b/tools/hotplug/common/Makefile @@ -7,6 +7,8 @@ include $(XEN_ROOT)/tools/Rules.mk XEN_SCRIPTS := XEN_SCRIPT_DATA := hotplugpath.sh +GEN_FILES := hotplugpath.sh + .PHONY: all all: @@ -17,7 +19,7 @@ install: install-scripts uninstall: uninstall-scripts .PHONY: install-scripts -install-scripts: all +install-scripts: all $(GEN_FILES) $(INSTALL_DIR) $(DESTDIR)$(XEN_SCRIPT_DIR) set -e; for i in $(XEN_SCRIPTS); \ do \ @@ -38,3 +40,4 @@ clean: .PHONY: distclean distclean: clean + rm -rf $(GEN_FILES) diff --git a/tools/hotplug/common/hotplugpath.sh.in b/tools/hotplug/common/hotplugpath.sh.src similarity index 100% rename from tools/hotplug/common/hotplugpath.sh.in rename to tools/hotplug/common/hotplugpath.sh.src diff --git a/tools/ocaml/libs/xs/Makefile b/tools/ocaml/libs/xs/Makefile index e160e6a711..a9b534c929 100644 --- a/tools/ocaml/libs/xs/Makefile +++ b/tools/ocaml/libs/xs/Makefile @@ -8,6 +8,8 @@ OCAMLOPTFLAGS += -for-pack Xenstore .NOTPARALLEL: # Ocaml is such a PITA! +GEN_FILES := paths.ml + PREINTF = xsraw.cmi xst.cmi PREOBJS = queueop xsraw xst PRELIBS = $(foreach obj, $(PREOBJS),$(obj).cmo) $(foreach obj,$(PREOJBS),$(obj).cmx) @@ -17,6 +19,8 @@ LIBS = xenstore.cma xenstore.cmxa all: $(PREINTF) $(PRELIBS) $(INTF) $(LIBS) $(PROGRAMS) +$(OBJS): $(GEN_FILES) + bins: $(PROGRAMS) libs: $(LIBS) @@ -43,4 +47,7 @@ install: $(LIBS) META uninstall: $(OCAMLFIND) remove -destdir $(OCAMLDESTDIR) xenstore +.PHONY: distclean + rm -rf $(GEN_FILES) + include $(OCAML_TOPLEVEL)/Makefile.rules diff --git a/tools/ocaml/libs/xs/paths.ml.in b/tools/ocaml/libs/xs/paths.ml.src similarity index 100% rename from tools/ocaml/libs/xs/paths.ml.in rename to tools/ocaml/libs/xs/paths.ml.src diff --git a/tools/ocaml/xenstored/Makefile b/tools/ocaml/xenstored/Makefile index c333394a34..138537ee7a 100644 --- a/tools/ocaml/xenstored/Makefile +++ b/tools/ocaml/xenstored/Makefile @@ -72,6 +72,8 @@ XENSTOREDLIBS = \ -ccopt -L -ccopt $(OCAML_TOPLEVEL)/libs/xsd_glue $(OCAML_TOPLEVEL)/libs/xsd_glue/plugin_interface_v1.cmxa \ -ccopt -L -ccopt $(XEN_ROOT)/tools/libs/ctrl +GEN_FILES := paths.ml oxenstored.conf + PROGRAMS = oxenstored oxenstored_LIBS = $(XENSTOREDLIBS) @@ -83,7 +85,7 @@ oxenstored_OBJS = $(oxenstored_MLSORTED:.ml=) OCAML_PROGRAM = oxenstored -all: $(INTF) $(LIBS) $(PROGRAMS) +all: $(GEN_FILES) $(INTF) $(LIBS) $(PROGRAMS) bins: $(PROGRAMS) @@ -99,4 +101,7 @@ uninstall: rm -f $(DESTDIR)$(XEN_CONFIG_DIR)/oxenstored.conf rm -f $(DESTDIR)$(sbindir)/oxenstored +distclean: + rm -rf $(GEN_FILES) + include $(OCAML_TOPLEVEL)/Makefile.rules diff --git a/tools/ocaml/xenstored/oxenstored.conf.in b/tools/ocaml/xenstored/oxenstored.conf.src similarity index 100% rename from tools/ocaml/xenstored/oxenstored.conf.in rename to tools/ocaml/xenstored/oxenstored.conf.src diff --git a/tools/ocaml/xenstored/paths.ml.in b/tools/ocaml/xenstored/paths.ml.src similarity index 100% rename from tools/ocaml/xenstored/paths.ml.in rename to tools/ocaml/xenstored/paths.ml.src -- 2.51.0
