Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the new xbt/str testsuite to the autogenerated
[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 if USE_SIMIX
63   EXTRA_DIST+=include/simix/simix.h include/simix/datatypes.h simix/msg_simix_private.h \
64         gras_simix/Transport/gras_simix_transport_interface.h \
65         gras_simix/Virtu/gras_simix_virtu_interface.h          gras_simix/Virtu/gras_simix_virtu_private.h\
66         gras_simix/Virtu/gras_simix_virtu_rl.h                 gras_simix/Virtu/gras_simix_virtu_sg.h \
67         gras_simix/DataDesc/gras_simix_ddt_parse.yy.l          gras_simix/DataDesc/gras_simix_ddt_parse.yy.c
68 else
69   EXTRA_DIST+=gras/Transport/transport_interface.h \
70         gras/Virtu/virtu_interface.h          gras/Virtu/virtu_private.h\
71         gras/Virtu/virtu_rl.h                 gras/Virtu/virtu_sg.h \
72         gras/DataDesc/ddt_parse.yy.l          gras/DataDesc/ddt_parse.yy.c
73 endif
74
75 #        gras_private.h
76
77 #LIBRARY_VERSION= 0:0:0
78 #                 | | |
79 #          +------+ | +---+
80 #          |        |     |
81 #       current:revision:age
82 #          |        |     |
83 #          |        |     +- Increment if interfaces have been added
84 #          |        |        Set to zero if interfaces have been removed or
85 #          |        |        changed
86 #          |        +- Increment if source code has changed
87 #          |           Set to zero if current is incremented
88 #          +- Increment if interfaces have been added, removed or changed
89
90 VERSION_INFO= -version-info 1:0:0
91 # from `info libtool "Updating version info"` 
92 # and  `info libtool "Release numbers"` 
93 #
94 # A) For stable library (interface wise), you should use --version-info:
95 #
96 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
97 # - Do not update it before public release (keep numbers small)
98 #
99 # ----------------------------------------------------------------------+
100 # +   Interface     |  code of existing  | Interface | New version info |
101 # | removal/change? | interface changed? | addition? |                  |
102 # +-----------------+--------------------+-----------+------------------+
103 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
104 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
105 # |      no         |        yes         |    no     |  C   : R++ : A   |
106 # |      no         |        no          |    yes    |  C   : R   : A++ |
107 # |      no         |        no          |    no     |  C   : R   : A   |
108 # +-----------------+--------------------+-----------+------------------+
109 #
110 # B) For rapidely changing library, you should go for the -release flag
111 #
112 #  It modifies the library name, and you thus cannot say that a library
113 #   using this trick is ready for a "stable" release (say, in Debian).
114
115 lib_LTLIBRARIES= libsimgrid.la libgras.la
116
117 COMMON_SRC=\
118   \
119   xbt/snprintf.c    xbt/xbt_str.c                                            \
120   xbt/ex.c                                                                   \
121   \
122   xbt_modinter.h    gras_modinter.h                                          \
123   \
124   xbt/sysdep.c                                                               \
125   xbt/asserts.c                                                              \
126   xbt/log.c         xbt/xbt_log_appender_file.c xbt/xbt_log_layout_simple.c  \
127   xbt/mallocator.c                                                           \
128   xbt/dynar.c                                                                \
129   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
130   xbt/dict_multi.c                                                           \
131   xbt/heap.c                                                                 \
132   xbt/fifo.c                                                                 \
133   xbt/swag.c                                                                 \
134   xbt/graph.c                                                                \
135   xbt/set.c                                                                  \
136   xbt/xbt_matrix.c                                                           \
137   xbt/xbt_peer.c                                                             \
138   xbt/xbt_main.c                                                             \
139   xbt/config.c                                                               \
140   xbt/cunit.c                                                                \
141   xbt/graphxml_parse.c
142
143 RL_SRC= \
144   gras/rl_stubs.c                     xbt/xbt_thread.c                    \
145   \
146   gras/Transport/rl_transport.c          \
147   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
148   \
149   gras/Virtu/rl_emul.c \
150   gras/Virtu/rl_process.c        gras/Virtu/rl_time.c \
151   gras/Virtu/rl_dns.c\
152   \
153   gras/Msg/rl_msg.c
154
155 RL_SIMIX_SRC= \
156   gras_simix/gras_simix_rl_stubs.c                     xbt/xbt_thread.c                    \
157   \
158   gras_simix/Transport/gras_simix_rl_transport.c          \
159   gras_simix/Transport/gras_simix_transport_plugin_file.c   gras_simix/Transport/gras_simix_transport_plugin_tcp.c  \
160   \
161   gras_simix/Virtu/gras_simix_rl_emul.c \
162   gras_simix/Virtu/gras_simix_rl_process.c        gras_simix/Virtu/gras_simix_rl_time.c \
163   gras_simix/Virtu/gras_simix_rl_dns.c\
164   \
165   gras_simix/Msg/gras_simix_rl_msg.c
166
167 SG_SRC=  \
168   xbt/context.c                                                              \
169   \
170   surf/maxmin.c                                                              \
171   surf/lagrange.c                                                            \
172   surf/trace_mgr.c                                                           \
173   surf/surf.c                                                                \
174   surf/surfxml_parse.c                                                       \
175   surf/cpu.c   surf/network.c   surf/workstation.c                           \
176   surf/surf_timer.c                                                          \
177   surf/network_dassf.c                                                       \
178   surf/workstation_KCCFLN05.c  \
179   \
180   simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c                       \
181   simdag/sd_workstation.c
182
183 GTNETS_SRC= \
184   surf/gtnets/gtnets_simulator.cc \
185   surf/gtnets/gtnets_topology.cc  \
186   surf/gtnets/gtnets_interface.cc \
187   surf/network_gtnets.c
188
189 if USE_GTNETS
190   SG_SRC+=$(GTNETS_SRC)
191 else
192   EXTRA_DIST+=$(GTNETS_SRC)
193 endif
194
195 if HAVE_SDP
196   SG_SRC+= surf/sdp.c
197 else 
198   EXTRA_DIST+=surf/sdp.c
199 endif
200
201 SIMIX_SRC= \
202   simix/smx_global.c \
203   simix/smx_deployment.c \
204   simix/smx_config.c \
205   simix/smx_environment.c \
206   simix/smx_host.c \
207   simix/smx_process.c \
208   simix/smx_action.c \
209   simix/smx_synchro.c
210
211 MSG_SRC=  msg/msg_config.c \
212   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
213   msg/global.c msg/environment.c msg/deployment.c 
214
215 MSG_SIMIX_SRC=  msg_simix/msg_simix_config.c \
216   msg_simix/msg_simix_task.c \
217   msg_simix/msg_simix_host.c \
218   msg_simix/msg_simix_process.c \
219   msg_simix/msg_simix_gos.c \
220   msg_simix/msg_simix_global.c \
221   msg_simix/msg_simix_environment.c \
222   msg_simix/msg_simix_deployment.c 
223
224 GRAS_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
225   \
226   gras/Virtu/sg_emul.c \
227   gras/Virtu/sg_process.c        gras/Virtu/sg_time.c     \
228   gras/Virtu/sg_dns.c\
229   \
230   gras/sg_stubs.c                         \
231   gras/Msg/sg_msg.c
232
233 GRAS_SIMIX_SRC= gras_simix/Transport/gras_simix_sg_transport.c  gras_simix/Transport/gras_simix_transport_plugin_sg.c        \
234   \
235   gras_simix/Virtu/gras_simix_sg_emul.c \
236   gras_simix/Virtu/gras_simix_sg_process.c        gras_simix/Virtu/gras_simix_sg_time.c     \
237   gras_simix/Virtu/gras_simix_sg_dns.c\
238   \
239   gras_simix/gras_simix_sg_stubs.c                         \
240   gras_simix/Msg/gras_simix_sg_msg.c
241
242 if USE_SIMIX
243   SG_SRC+=$(SIMIX_SRC)
244   SG_SRC+=$(MSG_SIMIX_SRC)
245   SG_SRC+=$(GRAS_SIMIX_SRC)
246   EXTRA_DIST+=$(MSG_SRC)
247   COMMON_SRC+=gras_simix/gras_simix_gras.c  \
248   gras_simix/Transport/gras_simix_transport.c          gras_simix/Transport/gras_simix_transport_private.h \
249   gras_simix/Msg/gras_simix_msg.c                      gras_simix/Msg/gras_simix_rpc.c                       gras_simix/Msg/gras_simix_timer.c                 \
250   gras_simix/Msg/gras_simix_msg_interface.h            gras_simix/Msg/gras_simix_msg_private.h           \
251   gras_simix/Virtu/gras_simix_process.c gras_simix/Virtu/gras_simix_gras_module.c  \
252   \
253   gras_simix/DataDesc/gras_simix_ddt_create.c          \
254   gras_simix/DataDesc/gras_simix_ddt_convert.c         gras_simix/DataDesc/gras_simix_ddt_exchange.c     \
255   gras_simix/DataDesc/gras_simix_cbps.c                gras_simix/DataDesc/gras_simix_datadesc.c         \
256   gras_simix/DataDesc/gras_simix_datadesc_interface.h  gras_simix/DataDesc/gras_simix_datadesc_private.h \
257   gras_simix/DataDesc/gras_simix_ddt_parse.c           gras_simix/DataDesc/gras_simix_ddt_parse.yy.c         gras_simix/DataDesc/gras_simix_ddt_parse.yy.h
258
259 else  
260   EXTRA_DIST+=$(SIMIX_SRC)
261   EXTRA_DIST+=$(MSG_SIMIX_SRC)
262   EXTRA_DIST+=$(GRAS_SIMIX_SRC)
263   SG_SRC+=$(MSG_SRC)
264   SG_SRC+=$(GRAS_SRC)
265   COMMON_SRC+=gras/gras.c  \
266   gras/Transport/transport.c          gras/Transport/transport_private.h  \
267   gras/Msg/msg.c                      gras/Msg/rpc.c                       gras/Msg/timer.c                 \
268   gras/Msg/msg_interface.h            gras/Msg/msg_private.h           \
269   \
270   gras/Virtu/process.c gras/Virtu/gras_module.c  \
271   \
272   gras/DataDesc/ddt_create.c          \
273   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
274   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
275   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
276   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h
277 endif
278
279 AMOK_SRC= \
280   amok/amok_base.c \
281   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
282   amok/PeerManagement/peermanagement.c
283
284 if GRAMINE_MODE
285 else 
286 ###
287 ### Testing infrastructure
288 ###
289
290 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
291 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
292 # are generated. Sorry about that.
293
294 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
295 # make clean-units ; make testall
296
297 # Suites and tests run in the given order.
298
299 noinst_PROGRAMS=testall
300 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
301             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
302             xbt/config.c
303 TEST_UNITS= ./cunit_unit.c ./ex_unit.c         \
304             ./dynar_unit.c ./dict_unit.c ./set_unit.c ./swag_unit.c \
305             ./config_unit.c
306
307 BUILT_SOURCES=../include/surf/surfxml.h surf/surfxml.c \
308               ../include/xbt/graphxml.h xbt/graphxml.c \
309               gras/DataDesc/ddt_parse.yy.c \
310               $(TEST_UNITS) simgrid_units_main.c
311
312 testall_SOURCES= $(TEST_UNITS) simgrid_units_main.c
313 testall_LDADD=libgras.la
314 TESTS=testall
315
316 EXTRA_DIST+=$(testall_SOURCES)
317
318 if MAINTAINER_MODE
319 ./cunit_unit.c: xbt/cunit.c
320         @top_srcdir@/tools/sg_unit_extractor.pl $^
321 ./ex_unit.c: xbt/ex.c
322         @top_srcdir@/tools/sg_unit_extractor.pl $^
323 ./dynar_unit.c: xbt/dynar.c
324         @top_srcdir@/tools/sg_unit_extractor.pl $^
325 ./dict_unit.c: xbt/dict.c
326         @top_srcdir@/tools/sg_unit_extractor.pl $^
327 ./set_unit.c: xbt/set.c
328         @top_srcdir@/tools/sg_unit_extractor.pl $^
329 ./swag_unit.c: xbt/swag.c
330         @top_srcdir@/tools/sg_unit_extractor.pl $^
331 ./config_unit.c: xbt/config.c
332         @top_srcdir@/tools/sg_unit_extractor.pl $^
333
334 simgrid_units_main.c: $(TEST_UNITS)
335         @top_srcdir@/tools/sg_unit_extractor.pl xbt/cunit.c
336
337 clean-units:
338         rm -f simgrid_units_main.c *_unit.c
339
340 else
341
342 $(TEST_UNITS) simgrid_units_main.c clean-units: 
343         @echo "ERROR: Test units not generated."
344         @echo "ERROR: If you are using a CVS checkout, configure with the --enable-maintainer-mode flag"
345         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
346         @exit 1
347
348 endif
349
350 ###
351 ### Regenerate what needs to with flex & flexml
352 ###
353
354
355 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
356         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
357
358 if MAINTAINER_MODE
359 surf/surfxml.c: surf/surfxml.l
360         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
361 xbt/graphxml.c: xbt/graphxml.l
362         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
363
364 if HAVE_FLEXML
365 surf/surfxml.l: $(srcdir)/surf/surfxml.dtd
366         set -e; mkdir -p surf; flexml -b 1000000 -P surfxml --sysid=surfxml.dtd -S $@ -L $^
367 $(top_srcdir)/include/surf/surfxml.h: $(srcdir)/surf/surfxml.dtd
368         set -e;                flexml            -P surfxml --sysid=surfxml.dtd -H $@ -L $^
369
370 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
371         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
372 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
373         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
374 else
375
376 $(top_srcdir)/include/surf/surfxml.h surf/surfxml.l: $(top_srcdir)/src/surf/surfxml.dtd
377         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
378         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
379         @echo "ERROR:   touch include/surf/surfxml.h src/surf/surfxml.l"
380         @exit 1
381 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
382         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
383         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
384         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
385         @exit 1
386 endif
387 endif
388 endif
389
390 ###
391 ### Declare the library content
392 ###
393
394 if USE_SIMIX
395 libgras_la_SOURCES= $(COMMON_SRC) $(RL_SIMIX_SRC) $(AMOK_SRC)
396 else
397 libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC) $(AMOK_SRC)
398 endif
399 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GTNETS_LDFLAGS@ @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
400
401 libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC) $(AMOK_SRC)
402 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GTNETS_LDFLAGS@ @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
403
404
405
406 include $(top_srcdir)/acmacro/dist-files.mk