From: Arnaud Giersch Date: Fri, 21 Jan 2011 14:25:05 +0000 (+0100) Subject: Makefile: add a rule to generate xml files conforming to the latest dtd. X-Git-Tag: v0.1~188^2~22 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/02bc7d3657348548782811722d73a8d06bdc4afc?ds=inline Makefile: add a rule to generate xml files conforming to the latest dtd. --- diff --git a/Makefile b/Makefile index 8a6bff4..2760531 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,14 @@ FLAVOURED_LOBA := loba-dev loba-stable TARGETS := $(DEFAULT_TARGETS) \ simple_async -.PHONY: all full clean realclean $(FLAVOURED_LOBA) +XML_FILES = \ + Dep.xml Plat.xml \ + platform.xml deployment.xml simple_async.xml \ + cluster1000.xml + +XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml) + +.PHONY: all full xml clean realclean $(FLAVOURED_LOBA) all: $(DEFAULT_TARGETS) @@ -60,7 +67,9 @@ full: echo $(MAKE) "$$target"; \ $(MAKE) "$$target"; \ done - $(MAKE) $(DEFAULT_TARGETS) + $(MAKE) xml $(DEFAULT_TARGETS) + +xml: $(XML_DEV_FILES) clean: $(RM) core core.[0-9]* vgcore.[0-9]* @@ -72,10 +81,14 @@ clean: realclean: clean $(RM) $(FLAVOURED_LOBA) + $(RM) $(XML_DEV_FILES) $(RM) *~ %.d: %.cpp ; $(MAKEDEPEND.CXX) +%_dev.xml: %.xml + sed '/DOCTYPE/s,simgrid.dtd,http://simgrid.gforge.inria.fr/&,' $< > $@ + $(FLAVOURED_LOBA): $(MAKE) clean $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba