Logo AND Algorithmique Numérique Distribuée

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