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) \
44 SRC.simple_async := simple_async.cpp
46 SRC := $(SRC.loba) $(SRC.simple_async)
47 OBJ := $(SRC:%.cpp=%.o)
48 DEP := $(SRC:%.cpp=%.d)
50 DEFAULT_TARGETS := loba
51 FLAVOURED_LOBA := loba-dev loba-stable
52 TARGETS := $(DEFAULT_TARGETS) \
57 platform.xml deployment.xml simple_async.xml \
60 XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml)
62 .PHONY: all full xml clean realclean $(FLAVOURED_LOBA)
64 all: $(DEFAULT_TARGETS)
67 @for target in $(FLAVOURED_LOBA); do \
68 echo $(MAKE) "$$target"; \
71 $(MAKE) xml $(DEFAULT_TARGETS)
76 $(RM) core core.[0-9]* vgcore.[0-9]*
84 $(RM) $(FLAVOURED_LOBA)
85 $(RM) $(XML_DEV_FILES)
88 %.d: %.cpp ; $(MAKEDEPEND.CXX)
91 sed '/DOCTYPE/s,simgrid.dtd,http://simgrid.gforge.inria.fr/&,' $< > $@
95 $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba
99 misc_autogen.h: $(SIMGRID_INSTALL_DIR)/include/xbt/log.h
100 grep -C1 '# *define *CLOG' $< \
101 | sed 's/CLOG/XCLOG/;s/_XBT_LOGV\(([^)]*)\)/(*\1)/' > $@
103 version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba)))
105 ifeq ($(filter $(MAKECMDGOALS),full clean realclean $(FLAVOURED_LOBA)),)
106 $(shell ./setlocalversion)
111 $(TARGETS): $$(patsubst %.cpp,%.o,$$(SRC.$$@))
112 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@