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

Private GIT Repository
Add algorithm makhoul2.
[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         messages.cpp            \
38         misc.cpp                \
39         msg_thread.cpp          \
40         neighbor.cpp            \
41         options.cpp             \
42         process.cpp             \
43         version.cpp
44
45 SRC.simple_async := simple_async.cpp
46
47 SRC := $(SRC.loba) $(SRC.simple_async)
48 OBJ := $(SRC:%.cpp=%.o)
49 DEP := $(SRC:%.cpp=%.d)
50
51 DEFAULT_TARGETS := loba
52 FLAVOURED_LOBA := loba-dev loba-stable
53 TARGETS := $(DEFAULT_TARGETS)   \
54            simple_async
55
56 XML_FILES =                                             \
57         Dep.xml  Plat.xml                               \
58         platform.xml deployment.xml simple_async.xml    \
59         cluster1000.xml machines1000.xml
60
61 XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml)
62
63 .PHONY: all full xml clean realclean $(FLAVOURED_LOBA)
64
65 all: $(DEFAULT_TARGETS)
66
67 full:
68         @for target in $(FLAVOURED_LOBA); do    \
69                 echo $(MAKE) "$$target";        \
70                 $(MAKE) "$$target";             \
71         done
72         $(MAKE) xml $(DEFAULT_TARGETS)
73
74 xml: $(XML_DEV_FILES)
75
76 clean:
77         $(RM) core core.[0-9]* vgcore.[0-9]*
78         $(RM) localversion
79         $(RM) $(OBJ)
80         $(RM) $(DEP)
81         $(RM) $(TARGETS)
82
83 realclean: clean
84         $(RM) $(FLAVOURED_LOBA)
85         $(RM) $(XML_DEV_FILES)
86         $(RM) *~
87
88 %.d: %.cpp ; $(MAKEDEPEND.CXX)
89
90 %_dev.xml: %.xml
91         sed '/DOCTYPE/s,simgrid.dtd,http://simgrid.gforge.inria.fr/&,' $< > $@
92
93 $(FLAVOURED_LOBA):
94         $(MAKE) clean
95         $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba
96         mv -f -- loba $@
97         $(MAKE) clean
98
99 version.o: $(patsubst %.cpp,%.o,$(filter-out version.cpp, $(SRC.loba)))
100
101 ifeq ($(filter $(MAKECMDGOALS),full clean realclean $(FLAVOURED_LOBA)),)
102   $(shell ./setlocalversion)
103   -include $(DEP)
104 endif
105
106 .SECONDEXPANSION:
107 $(TARGETS): $$(patsubst %.cpp,%.o,$$(SRC.$$@))
108         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@