X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/d47d44b2ed067c834ef210ad544512e7581a1c8e..014983949544db9a324cece29a0ccc46b1e3e1f3:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index 4b0df07..2ab9e7b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ -SIMGRID_INSTALL_DIR := ./simgrid-3.5-install +SIMGRID_INSTALL_DIR := ./simgrid-stable +#SIMGRID_INSTALL_DIR := ./simgrid-dev OPTIM_FLAGS += -O3 DEBUG_FLAGS += -g @@ -11,9 +12,10 @@ CPPFLAGS += -I $(SIMGRID_INSTALL_DIR)/include CPPFLAGS += $(CHECK_FLAGS) CFLAGS += -std=c99 -CFLAGS += -fgnu89-inline # workaround simgrid bug +#CFLAGS += -fgnu89-inline # workaround simgrid bug CFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS) +#CXXFLAGS += -std=c++0x CXXFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS) LDFLAGS += -L $(SIMGRID_INSTALL_DIR)/lib @@ -32,6 +34,11 @@ SETLOCALVERSION := ./setlocalversion SRC.loba := main.cpp \ communicator.cpp \ cost_func.cpp \ + deployment.cpp \ + hostdata.cpp \ + $(wildcard loba_*.cpp) \ + misc.cpp \ + neighbor.cpp \ options.cpp \ process.cpp \ version.cpp @@ -46,7 +53,7 @@ TARGETS := loba simple_async $(shell $(SETLOCALVERSION)) -.PHONY: all depend clean +.PHONY: all clean realclean all: $(TARGETS) @@ -65,7 +72,11 @@ realclean: clean version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba))) +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(MAKECMDGOALS),realclean) -include $(DEP) +endif +endif .SECONDEXPANSION: $(TARGETS): $$(patsubst %.cpp,%.o,$$(SRC.$$@))