X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/6ff0fa0bf05608ab7edd5e2a5555f7f2eff71da5..1bba96ae977208a57bd80c7011c2033435a64d44:/Makefile diff --git a/Makefile b/Makefile index 127476b..2b0df87 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,7 @@ SRC.loba := main.cpp \ neighbor.cpp \ options.cpp \ process.cpp \ + statistics.cpp \ version.cpp SRC.simple_async := simple_async.cpp @@ -51,13 +52,25 @@ 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) full: - $(MAKE) $(FLAVOURED_LOBA) - $(MAKE) $(TARGETS) + @for target in $(FLAVOURED_LOBA); do \ + echo $(MAKE) "$$target"; \ + $(MAKE) "$$target"; \ + done + $(MAKE) xml $(DEFAULT_TARGETS) + +xml: $(XML_DEV_FILES) clean: $(RM) core core.[0-9]* vgcore.[0-9]* @@ -69,10 +82,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