1 SIMGRID_INSTALL_DIR ?= ./simgrid-stable
2 #SIMGRID_INSTALL_DIR ?= ./simgrid-dev
7 CHECK_FLAGS += -Wall -Wextra
12 CPPFLAGS += -I $(SIMGRID_INSTALL_DIR)/include
13 CPPFLAGS += $(CHECK_FLAGS)
16 #CFLAGS += -fgnu89-inline # workaround simgrid bug
17 CFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS)
19 #CXXFLAGS += -std=c++0x
20 CXXFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS)
22 LDFLAGS += -L $(SIMGRID_INSTALL_DIR)/lib
23 LDFLAGS += -Wl,-rpath,$(SIMGRID_INSTALL_DIR)/lib
25 LINK.o = $(CXX) $(CXXFLAGS) $(LDFLAGS) $(TARGET_ARCH)
28 MAKEDEPEND.FLAGS = $(CPPFLAGS) -MM -MG -MF $@ $<
29 MAKEDEPEND.CXX = $(CXX) $(MAKEDEPEND.FLAGS)
31 SRC.loba := main.cpp \
36 $(wildcard loba_*.cpp) \
43 SRC.simple_async := simple_async.cpp
45 SRC := $(SRC.loba) $(SRC.simple_async)
46 OBJ := $(SRC:%.cpp=%.o)
47 DEP := $(SRC:%.cpp=%.d)
49 DEFAULT_TARGETS := loba
50 FLAVOURED_LOBA := loba-dev loba-stable
51 TARGETS := $(DEFAULT_TARGETS) \
56 platform.xml deployment.xml simple_async.xml \
57 cluster1000.xml machines1000.xml
59 XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml)
61 .PHONY: all full xml clean realclean $(FLAVOURED_LOBA)
63 all: $(DEFAULT_TARGETS)
66 @for target in $(FLAVOURED_LOBA); do \
67 echo $(MAKE) "$$target"; \
70 $(MAKE) xml $(DEFAULT_TARGETS)
75 $(RM) core core.[0-9]* vgcore.[0-9]*
82 $(RM) $(FLAVOURED_LOBA)
83 $(RM) $(XML_DEV_FILES)
86 %.d: %.cpp ; $(MAKEDEPEND.CXX)
89 sed '/DOCTYPE/s,simgrid.dtd,http://simgrid.gforge.inria.fr/&,' $< > $@
93 $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba
97 version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba)))
99 ifeq ($(filter $(MAKECMDGOALS),full clean realclean $(FLAVOURED_LOBA)),)
100 $(shell ./setlocalversion)
105 $(TARGETS): $$(patsubst %.cpp,%.o,$$(SRC.$$@))
106 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@