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 \
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]*
83 $(RM) $(FLAVOURED_LOBA)
84 $(RM) $(XML_DEV_FILES)
87 %.d: %.cpp ; $(MAKEDEPEND.CXX)
90 sed '/DOCTYPE/s,simgrid.dtd,http://simgrid.gforge.inria.fr/&,' $< > $@
94 $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba
98 misc_autogen.h: $(SIMGRID_INSTALL_DIR)/include/xbt/log.h
99 grep -C1 '# *define *CLOG' $< \
100 | sed 's/CLOG/XCLOG/;s/_XBT_LOGV\(([^)]*)\)/(*\1)/' > $@
102 version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba)))
104 ifeq ($(filter $(MAKECMDGOALS),full clean realclean $(FLAVOURED_LOBA)),)
105 $(shell ./setlocalversion)
110 $(TARGETS): $$(patsubst %.cpp,%.o,$$(SRC.$$@))
111 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@