A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Rename process::send() -> process::send_all().
[loba.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index 127476b860120ad0aa371fd665a1f09ac1976c3c..2b0df87c2ccef2fa39d0860bb79a0cdf4cf99a9e 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-38,6
+38,7
@@
SRC.loba := main.cpp \
neighbor.cpp \
options.cpp \
process.cpp \
neighbor.cpp \
options.cpp \
process.cpp \
+ statistics.cpp \
version.cpp
SRC.simple_async := simple_async.cpp
version.cpp
SRC.simple_async := simple_async.cpp
@@
-51,13
+52,25
@@
FLAVOURED_LOBA := loba-dev loba-stable
TARGETS := $(DEFAULT_TARGETS) \
simple_async
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:
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]*
clean:
$(RM) core core.[0-9]* vgcore.[0-9]*
@@
-69,10
+82,14
@@
clean:
realclean: clean
$(RM) $(FLAVOURED_LOBA)
realclean: clean
$(RM) $(FLAVOURED_LOBA)
+ $(RM) $(XML_DEV_FILES)
$(RM) *~
%.d: %.cpp ; $(MAKEDEPEND.CXX)
$(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
$(FLAVOURED_LOBA):
$(MAKE) clean
$(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba