X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/ac9e5de4c0ff479ce265da01df4d53771e096d9d..5ee35ecefd297b90d4f2cb1f1158fdf1e2366360:/Makefile diff --git a/Makefile b/Makefile index 8030fa0..751418c 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,21 @@ -SIMGRID_INSTALL_DIR := ./simgrid-stable -#SIMGRID_INSTALL_DIR := ./simgrid-dev +#SIMGRID_INSTALL_DIR ?= $(PWD)/simgrid-stable +SIMGRID_INSTALL_DIR ?= $(PWD)/simgrid-dev OPTIM_FLAGS += -O3 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) @@ -29,48 +34,58 @@ SRC.loba := main.cpp \ deployment.cpp \ hostdata.cpp \ $(wildcard loba_*.cpp) \ + messages.cpp \ misc.cpp \ + msg_thread.cpp \ neighbor.cpp \ options.cpp \ process.cpp \ version.cpp -SRC.simple_async := simple_async.cpp - -SRC := $(SRC.loba) $(SRC.simple_async) +SRC := $(SRC.loba) OBJ := $(SRC:%.cpp=%.o) -DEP := $(SRC:%.cpp=%.d) +DEP := $(SRC:%.cpp=.%.d) + +DEFAULT_TARGETS := loba +FLAVOURED_LOBA := loba-dev loba-stable +TARGETS := $(DEFAULT_TARGETS) -TARGETS := loba simple_async +.PHONY: all full clean realclean $(FLAVOURED_LOBA) -.PHONY: all clean realclean +all: $(DEFAULT_TARGETS) -all: $(TARGETS) +full: + @for target in $(FLAVOURED_LOBA); do \ + echo $(MAKE) "$$target"; \ + $(MAKE) "$$target"; \ + done + $(MAKE) xml $(DEFAULT_TARGETS) 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) +.%.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)/' > $@ +$(FLAVOURED_LOBA): + $(MAKE) clean + $(MAKE) SIMGRID_INSTALL_DIR=$(PWD)/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: