X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/d43e446400ac7b65d7d2dd3acd57f8f669484449..ba8a9c5fbc92dc95fc99d8078b3474fd2fd5a043:/Makefile diff --git a/Makefile b/Makefile index 7cf5a65..2ab9e7b 100644 --- a/Makefile +++ b/Makefile @@ -12,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 @@ -33,6 +34,7 @@ SETLOCALVERSION := ./setlocalversion SRC.loba := main.cpp \ communicator.cpp \ cost_func.cpp \ + deployment.cpp \ hostdata.cpp \ $(wildcard loba_*.cpp) \ misc.cpp \ @@ -51,7 +53,7 @@ TARGETS := loba simple_async $(shell $(SETLOCALVERSION)) -.PHONY: all depend clean +.PHONY: all clean realclean all: $(TARGETS) @@ -70,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.$$@))