X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/3969d4ebdc78d21108c2d9e38875d5717eb36f53..82a490fdda330eb916eb059929de4be817fe8a87:/Makefile

diff --git a/Makefile b/Makefile
index dc2d3b0..a4ccf17 100644
--- a/Makefile
+++ b/Makefile
@@ -6,11 +6,16 @@ DEBUG_FLAGS += -g
 #DEBUG_FLAGS += -pg
 CHECK_FLAGS += -Wall -Wextra
 
+CC := gcc
 CXX := g++
 
 CPPFLAGS += -I $(SIMGRID_INSTALL_DIR)/include
 CPPFLAGS += $(CHECK_FLAGS)
 
+#CFLAGS += -std=c99
+#CFLAGS += -fgnu89-inline      # workaround simgrid bug
+CFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS)
+
 #CXXFLAGS += -std=c++0x
 CXXFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS)
 
@@ -41,36 +46,59 @@ SRC := $(SRC.loba) $(SRC.simple_async)
 OBJ := $(SRC:%.cpp=%.o)
 DEP := $(SRC:%.cpp=%.d)
 
-TARGETS := loba simple_async
+DEFAULT_TARGETS := loba
+FLAVOURED_LOBA := loba-dev loba-stable
+TARGETS := $(DEFAULT_TARGETS)	\
+	   simple_async
+
+XML_FILES =						\
+	Dep.xml  Plat.xml				\
+	platform.xml deployment.xml simple_async.xml	\
+	cluster1000.xml machines1000.xml
+
+XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml)
 
-.PHONY: all clean realclean
+.PHONY: all full xml clean realclean $(FLAVOURED_LOBA)
 
-all: $(TARGETS)
+all: $(DEFAULT_TARGETS)
+
+full:
+	@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]*
-	$(RM) misc_autogen.h
 	$(RM) localversion
 	$(RM) $(OBJ)
 	$(RM) $(DEP)
 	$(RM) $(TARGETS)
 
 realclean: clean
+	$(RM) $(FLAVOURED_LOBA)
+	$(RM) $(XML_DEV_FILES)
 	$(RM) *~
 
 %.d: %.cpp ; $(MAKEDEPEND.CXX)
 
-misc_autogen.h: $(SIMGRID_INSTALL_DIR)/include/xbt/log.h
-	grep -C1 '# *define *CLOG' $< \
-	| sed 's/CLOG/XCLOG/;s/_XBT_LOGV\(([^)]*)\)/(*\1)/' > $@
+%_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
+	mv -f -- loba $@
+	$(MAKE) clean
 
 version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba)))
 
-ifneq ($(MAKECMDGOALS),clean)
-  ifneq ($(MAKECMDGOALS),realclean)
-    $(shell ./setlocalversion)
-    -include $(DEP)
-  endif
+ifeq ($(filter $(MAKECMDGOALS),full clean realclean $(FLAVOURED_LOBA)),)
+  $(shell ./setlocalversion)
+  -include $(DEP)
 endif
 
 .SECONDEXPANSION: