]> AND Private Git Repository - loba.git/blob - Makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Define a constant for the magic value.
[loba.git] / Makefile
1 SIMGRID_INSTALL_DIR ?= ./simgrid-stable
2 #SIMGRID_INSTALL_DIR ?= ./simgrid-dev
3
4 OPTIM_FLAGS += -O3
5 DEBUG_FLAGS += -g
6 #DEBUG_FLAGS += -pg
7 CHECK_FLAGS += -Wall -Wextra
8
9 CC := gcc
10 CXX := g++
11
12 CPPFLAGS += -I $(SIMGRID_INSTALL_DIR)/include
13 CPPFLAGS += $(CHECK_FLAGS)
14
15 #CFLAGS += -std=c99
16 #CFLAGS += -fgnu89-inline      # workaround simgrid bug
17 CFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS)
18
19 #CXXFLAGS += -std=c++0x
20 CXXFLAGS += $(OPTIM_FLAGS) $(DEBUG_FLAGS)
21
22 LDFLAGS += -L $(SIMGRID_INSTALL_DIR)/lib
23 LDFLAGS += -Wl,-rpath,$(SIMGRID_INSTALL_DIR)/lib
24
25 LINK.o = $(CXX) $(CXXFLAGS) $(LDFLAGS) $(TARGET_ARCH)
26 LDLIBS := -lsimgrid
27
28 MAKEDEPEND.FLAGS =  $(CPPFLAGS) -MM -MG -MF $@ $<
29 MAKEDEPEND.CXX = $(CXX) $(MAKEDEPEND.FLAGS)
30
31 SRC.loba := main.cpp            \
32         communicator.cpp        \
33         cost_func.cpp           \
34         deployment.cpp          \
35         hostdata.cpp            \
36         $(wildcard loba_*.cpp)  \
37         misc.cpp                \
38         neighbor.cpp            \
39         options.cpp             \
40         process.cpp             \
41         version.cpp
42
43 SRC.simple_async := simple_async.cpp
44
45 SRC := $(SRC.loba) $(SRC.simple_async)
46 OBJ := $(SRC:%.cpp=%.o)
47 DEP := $(SRC:%.cpp=%.d)
48
49 DEFAULT_TARGETS := loba
50 FLAVOURED_LOBA := loba-dev loba-stable
51 TARGETS := $(DEFAULT_TARGETS)   \
52            simple_async
53
54 XML_FILES =                                             \
55         Dep.xml  Plat.xml                               \
56         platform.xml deployment.xml simple_async.xml    \
57         cluster1000.xml
58
59 XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml)
60
61 .PHONY: all full xml clean realclean $(FLAVOURED_LOBA)
62
63 all: $(DEFAULT_TARGETS)
64
65 full:
66         @for target in $(FLAVOURED_LOBA); do    \
67                 echo $(MAKE) "$$target";        \
68                 $(MAKE) "$$target";             \
69         done
70         $(MAKE) xml $(DEFAULT_TARGETS)
71
72 xml: $(XML_DEV_FILES)
73
74 clean:
75         $(RM) core core.[0-9]* vgcore.[0-9]*
76         $(RM) misc_autogen.h
77         $(RM) localversion
78         $(RM) $(OBJ)
79         $(RM) $(DEP)
80         $(RM) $(TARGETS)
81
82 realclean: clean
83         $(RM) $(FLAVOURED_LOBA)
84         $(RM) $(XML_DEV_FILES)
85         $(RM) *~
86
87 %.d: %.cpp ; $(MAKEDEPEND.CXX)
88
89 %_dev.xml: %.xml
90         sed '/DOCTYPE/s,simgrid.dtd,http://simgrid.gforge.inria.fr/&,' $< > $@
91
92 $(FLAVOURED_LOBA):
93         $(MAKE) clean
94         $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba
95         mv -f -- loba $@
96         $(MAKE) clean
97
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)/' > $@
101
102 version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba)))
103
104 ifeq ($(filter $(MAKECMDGOALS),full clean realclean $(FLAVOURED_LOBA)),)
105   $(shell ./setlocalversion)
106   -include $(DEP)
107 endif
108
109 .SECONDEXPANSION:
110 $(TARGETS): $$(patsubst %.cpp,%.o,$$(SRC.$$@))
111         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@