Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add Doxygen documentation for mallocators
[simgrid.git] / src / Makefile.am
1 AM_CFLAGS= -g
2 #AM_CFLAGS= -DNDEBUG 
3
4 # -DNLOG   cuts absolutely all logs at compilation time.
5 # -DNDEBUG cuts asserts and logs at "trace" and "debug" levels.
6
7 # -g -ffast-math -funroll-loops -O3 -fno-strict-aliasing
8 # Those should be added by configure when using gcc
9 # fast-math is nasty when using IEEE floating point semantic
10 # strict-aliasing breaks my type-punning bad habit.
11
12
13 MAINTAINERCLEANFILES=Makefile.in
14 INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/src/include 
15 EXTRA_DIST= \
16         \
17         portable.h \
18         \
19         xbt/dynar_private.h \
20         xbt/dict_private.h \
21         xbt/heap_private.h \
22         xbt/fifo_private.h \
23         xbt/graph_private.h \
24         xbt/graphxml_parse.c \
25         xbt/graphxml.l \
26         xbt/graphxml.c \
27         xbt/graphxml.dtd \
28         xbt/context_private.h xbt/context_win32.h xbt/context_win32.c\
29         xbt/ex_interface.h \
30         \
31         surf/maxmin_private.h \
32         surf/trace_mgr_private.h \
33         surf/surf_private.h \
34         surf/cpu_private.h \
35         surf/workstation_private.h \
36         surf/surf_timer_private.h \
37         surf/surfxml_parse.c \
38         surf/surfxml.l \
39         surf/surfxml.c \
40         surf/surfxml.dtd \
41         surf/network_private.h \
42         surf/network_dassf_private.h \
43         surf/workstation_KCCFLN05_private.h \
44         \
45         include/surf/maxmin.h \
46         include/surf/trace_mgr.h \
47         include/surf/surf.h \
48         include/surf/surfxml_parse_private.h \
49         \
50         include/xbt/xbt_portability.h \
51         include/xbt/context.h \
52         \
53         msg/private.h \
54         \
55         simdag/private.h \
56         \
57         gras/Transport/transport_interface.h \
58         gras/Virtu/virtu_interface.h          gras/Virtu/virtu_private.h\
59         gras/Virtu/virtu_rl.h                 gras/Virtu/virtu_sg.h \
60         gras/DataDesc/ddt_parse.yy.l          gras/DataDesc/ddt_parse.yy.c \
61         \
62         amok/Bandwidth/bandwidth_private.h \
63         amok/amok_modinter.h
64
65 #        gras_private.h
66
67 #LIBRARY_VERSION= 0:0:0
68 #                 | | |
69 #          +------+ | +---+
70 #          |        |     |
71 #       current:revision:age
72 #          |        |     |
73 #          |        |     +- Increment if interfaces have been added
74 #          |        |        Set to zero if interfaces have been removed or
75 #          |        |        changed
76 #          |        +- Increment if source code has changed
77 #          |           Set to zero if current is incremented
78 #          +- Increment if interfaces have been added, removed or changed
79
80 VERSION_INFO= -release 20050627 -version-info 0:0:0
81 # from `info libtool "Updating version info"` 
82 # and  `info libtool "Release numbers"` 
83 #
84 # A) For stable library (interface wise), you should use --version-info:
85 #
86 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
87 # - Do not update it before public release (keep numbers small)
88 #
89 # ----------------------------------------------------------------------+
90 # +   Interface     |  code of existing  | Interface | New version info |
91 # | removal/change? | interface changed? | addition? |                  |
92 # +-----------------+--------------------+-----------+------------------+
93 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
94 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
95 # |      no         |        yes         |    no     |  C   : R++ : A   |
96 # |      no         |        no          |    yes    |  C   : R   : A++ |
97 # |      no         |        no          |    no     |  C   : R   : A   |
98 # +-----------------+--------------------+-----------+------------------+
99 #
100 # B) For rapidely changing library, you should go for the -release flag
101 #
102 #  It modifies the library name, and you thus cannot say that a library
103 #   using this trick is ready for a "stable" release (say, in Debian).
104
105 lib_LTLIBRARIES= libsimgrid.la libgras.la
106 noinst_PROGRAMS=testall
107
108 COMMON_SRC=\
109   \
110   xbt/snprintf.c                                                             \
111   xbt/ex.c                                                                   \
112   \
113   xbt_modinter.h    gras_modinter.h                                          \
114   \
115   xbt/sysdep.c                                                               \
116   xbt/asserts.c                                                              \
117   xbt/log.c         xbt/log_default_appender.c                               \
118   xbt/dynar.c                                                                \
119   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
120   xbt/dict_multi.c                                                           \
121   xbt/heap.c                                                                 \
122   xbt/fifo.c                                                                 \
123   xbt/swag.c                                                                 \
124   xbt/graph.c                                                                \
125   xbt/set.c                                                                  \
126   xbt/xbt_matrix.c                                                           \
127   xbt/xbt_peer.c                                                             \
128   xbt/xbt_main.c                                                             \
129   xbt/config.c                                                               \
130   xbt/cunit.c                                                                \
131   xbt/graphxml_parse.c                                                       \
132   \
133   gras/gras.c \
134   \
135   gras/Transport/transport.c          gras/Transport/transport_private.h  \
136   \
137   gras/DataDesc/ddt_create.c          \
138   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
139   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
140   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
141   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h \
142   \
143   gras/Msg/msg.c                      gras/Msg/rpc.c                       gras/Msg/timer.c                 \
144   gras/Msg/msg_interface.h            gras/Msg/msg_private.h           \
145   \
146   gras/Virtu/process.c gras/Virtu/gras_module.c
147
148 RL_SRC= \
149   gras/Transport/rl_transport.c          \
150   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
151   \
152   gras/Virtu/rl_emul.c \
153   gras/Virtu/rl_process.c        gras/Virtu/rl_time.c \
154   gras/Virtu/rl_dns.c\
155   \
156   gras/Msg/rl_msg.c
157
158 SG_SRC=  \
159   xbt/context.c                                                              \
160   \
161   surf/maxmin.c                                                              \
162   surf/trace_mgr.c                                                           \
163   surf/surf.c                                                                \
164   surf/surfxml_parse.c                                                       \
165   surf/cpu.c   surf/network.c   surf/workstation.c                           \
166   surf/surf_timer.c                                                          \
167   surf/network_dassf.c                                                       \
168   surf/workstation_KCCFLN05.c  \
169   \
170   msg/msg_config.c \
171   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
172   msg/global.c msg/environment.c msg/deployment.c  \
173   \
174   simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c                       \
175   simdag/sd_workstation.c                                                    \
176   \
177   gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
178   \
179   gras/Virtu/sg_emul.c \
180   gras/Virtu/sg_process.c        gras/Virtu/sg_time.c     \
181   gras/Virtu/sg_dns.c\
182   \
183   gras/Msg/sg_msg.c
184
185 AMOK_SRC= \
186   amok/amok_base.c \
187   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
188   amok/PeerManagement/peermanagement.c
189
190 ###
191 ### Testing infrastructure
192 ###
193
194 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
195 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
196 # are generated. Sorry about that.
197
198 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
199 # make clean-units ; make testall
200
201 # Suites and tests run in the given order.
202
203 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
204             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
205             xbt/config.c
206 TEST_UNITS= cunit_unit.c ex_unit.c         \
207             dynar_unit.c dict_unit.c set_unit.c swag_unit.c \
208             config_unit.c
209
210 BUILT_SOURCES=../include/surf/surfxml.h surf/surfxml.c \
211               ../include/xbt/graphxml.h xbt/graphxml.c \
212               gras/DataDesc/ddt_parse.yy.c \
213               $(TEST_UNITS) simgrid_units_main.c
214
215 testall_SOURCES= $(TEST_UNITS) simgrid_units_main.c
216 testall_LDADD=libgras.la
217 TESTS=testall
218
219 EXTRA_DIST+=$(testall_SOURCES)
220
221 if MAINTAINER_MODE
222 cunit_unit.c: xbt/cunit.c
223         @top_srcdir@/tools/sg_unit_extractor.pl $^
224 ex_unit.c: xbt/ex.c
225         @top_srcdir@/tools/sg_unit_extractor.pl $^
226 dynar_unit.c: xbt/dynar.c
227         @top_srcdir@/tools/sg_unit_extractor.pl $^
228 dict_unit.c: xbt/dict.c
229         @top_srcdir@/tools/sg_unit_extractor.pl $^
230 set_unit.c: xbt/set.c
231         @top_srcdir@/tools/sg_unit_extractor.pl $^
232 swag_unit.c: xbt/swag.c
233         @top_srcdir@/tools/sg_unit_extractor.pl $^
234 config_unit.c: xbt/config.c
235         @top_srcdir@/tools/sg_unit_extractor.pl $^
236
237 simgrid_units_main.c: $(TEST_UNITS)
238         @top_srcdir@/tools/sg_unit_extractor.pl xbt/cunit.c
239
240 clean-units:
241         rm -f simgrid_units_main.c *_unit.c
242
243 else
244
245 $(TEST_UNITS) simgrid_units_main.c clean-units: 
246         @echo "ERROR: Test units not generated."
247         @echo "ERROR: If you are using a CVS checkout, configure with the --enable-maintainer-mode flag"
248         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
249         @exit 1
250
251 endif
252
253 ###
254 ### Regenerate what needs to with flex & flexml
255 ###
256
257
258 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
259         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ $^
260
261 if MAINTAINER_MODE
262 surf/surfxml.c: surf/surfxml.l
263         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ $^
264 xbt/graphxml.c: xbt/graphxml.l
265         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ $^
266
267 if HAVE_FLEXML
268 surf/surfxml.l: $(srcdir)/surf/surfxml.dtd
269         set -e; mkdir -p surf; flexml -b 1000000 -P surfxml --sysid=surfxml.dtd -S $@ -L $^
270 $(top_srcdir)/include/surf/surfxml.h: $(srcdir)/surf/surfxml.dtd
271         set -e;                flexml            -P surfxml --sysid=surfxml.dtd -H $@ -L $^
272         
273 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
274         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
275 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
276         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
277 else
278
279 $(top_srcdir)/include/surf/surfxml.h surf/surfxml.l: $(top_srcdir)/src/surf/surfxml.dtd
280         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
281         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
282         @echo "ERROR:   touch include/surf/surfxml.h src/surf/surfxml.l"
283         @exit 1
284 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
285         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
286         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
287         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
288         @exit 1
289 endif
290 endif
291
292 ###
293 ### Declare the library content
294 ###
295
296 libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC) $(AMOK_SRC)
297 libgras_la_LDFLAGS = $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
298
299 libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC) $(AMOK_SRC)
300 libsimgrid_la_LDFLAGS = $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
301
302
303
304 include $(top_srcdir)/acmacro/dist-files.mk