Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not throw exception on problem, since we will be called again to display it when...
[simgrid.git] / src / Makefile.am
1 #AM_CPPFLAGS=
2 AM_CFLAGS= -g
3 #AM_CFLAGS= -DNDEBUG 
4
5 # -DNLOG   cuts absolutely all logs at compilation time.
6 # -DNDEBUG cuts asserts and logs at "trace" and "debug" levels.
7
8 # -g -ffast-math -funroll-loops -O3 -fno-strict-aliasing
9 # Those should be added by configure when using gcc
10 # fast-math is nasty when using IEEE floating point semantic
11 # strict-aliasing breaks my type-punning bad habit.
12
13
14 MAINTAINERCLEANFILES=Makefile.in
15 INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/src/include
16 EXTRA_DIST= \
17         \
18         portable.h \
19         \
20         xbt/mallocator_private.h \
21         xbt/dynar_private.h \
22         xbt/dict_private.h \
23         xbt/heap_private.h \
24         xbt/fifo_private.h \
25         xbt/graph_private.h \
26         xbt/graphxml_parse.c \
27         xbt/graphxml.l \
28         xbt/graphxml.c \
29         xbt/graphxml.dtd \
30         xbt/context_private.h \
31         xbt/ex_interface.h \
32         \
33         surf/maxmin_private.h \
34         surf/trace_mgr_private.h \
35         surf/surf_private.h \
36         surf/cpu_private.h \
37         surf/workstation_private.h \
38         surf/surf_timer_private.h \
39         surf/surfxml_parse.c \
40         surf/surfxml.l \
41         surf/surfxml.c \
42         surf/surfxml.dtd \
43         surf/network_private.h \
44         surf/network_dassf_private.h \
45         surf/workstation_KCCFLN05_private.h \
46         \
47         include/surf/maxmin.h \
48         include/surf/trace_mgr.h \
49         include/surf/surf.h \
50         include/surf/surfxml_parse_private.h \
51         \
52         include/xbt/xbt_os_time.h \
53         include/xbt/xbt_os_thread.h \
54         include/xbt/context.h \
55         \
56         msg/private.h \
57         \
58         simdag/private.h \
59         \
60         gras/DataDesc/ddt_parse.yy.l \
61         gras/Virtu/virtu_interface.h \
62         amok/Bandwidth/bandwidth_private.h \
63         amok/amok_modinter.h
64         \
65         include/simix/simix.h include/simix/datatypes.h \
66         simix/msg_simix_private.h \
67         \
68         smpi/private.h smpi/smpi.h
69
70 #LIBRARY_VERSION= 0:0:0
71 #                 | | |
72 #          +------+ | +---+
73 #          |        |     |
74 #       current:revision:age
75 #          |        |     |
76 #          |        |     +- Increment if interfaces have been added
77 #          |        |        Set to zero if interfaces have been removed or
78 #          |        |        changed
79 #          |        +- Increment if source code has changed
80 #          |           Set to zero if current is incremented
81 #          +- Increment if interfaces have been added, removed or changed
82
83 VERSION_INFO= -version-info 2:0:0
84 # from `info libtool "Updating version info"` 
85 # and  `info libtool "Release numbers"` 
86 #
87 # A) For stable library (interface wise), you should use --version-info:
88 #
89 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
90 # - Do not update it before public release (keep numbers small)
91 #
92 # ----------------------------------------------------------------------+
93 # +   Interface     |  code of existing  | Interface | New version info |
94 # | removal/change? | interface changed? | addition? |                  |
95 # +-----------------+--------------------+-----------+------------------+
96 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
97 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
98 # |      no         |        yes         |    no     |  C   : R++ : A   |
99 # |      no         |        no          |    yes    |  C   : R   : A++ |
100 # |      no         |        no          |    no     |  C   : R   : A   |
101 # +-----------------+--------------------+-----------+------------------+
102 #
103 # B) For rapidely changing library, you should go for the -release flag
104 #
105 #  It modifies the library name, and you thus cannot say that a library
106 #   using this trick is ready for a "stable" release (say, in Debian).
107
108
109 ################################################
110 # Declaration of the different modules content #
111 ################################################
112
113 XBT_SRC=\
114   \
115   xbt/snprintf.c    xbt/xbt_str.c                                            \
116   xbt/ex.c                                                                   \
117   \
118   xbt_modinter.h    gras_modinter.h                                          \
119   xbt/xbt_virtu.c                                                            \
120   \
121   xbt/xbt_os_time.c                                                          \
122   xbt/asserts.c                                                              \
123   xbt/log.c                    xbt/xbt_log_appender_file.c                   \
124   xbt/xbt_log_layout_simple.c  xbt/xbt_log_layout_format.c                   \
125   xbt/mallocator.c                                                           \
126   xbt/dynar.c                                                                \
127   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
128   xbt/dict_multi.c                                                           \
129   xbt/heap.c                                                                 \
130   xbt/fifo.c                                                                 \
131   xbt/swag.c                                                                 \
132   xbt/graph.c                                                                \
133   xbt/set.c                                                                  \
134   xbt/xbt_matrix.c                                                           \
135   \
136   xbt/xbt_queue.c                                                            \
137   \
138   xbt/xbt_peer.c                                                             \
139   \
140   xbt/xbt_main.c                                                             \
141   \
142   xbt/config.c                                                               \
143   xbt/cunit.c                                                                \
144   xbt/graphxml_parse.c
145
146 XBT_RL_SRC = \
147   xbt/xbt_rl_synchro.c                                                                                                                                                                                                                   \
148         xbt/xbt_rl_time.c
149 XBT_SG_SRC = \
150   xbt/xbt_sg_synchro.c                                                                                                                                                                                                                   \
151         xbt/xbt_sg_time.c
152
153 SURF_SRC= \
154   surf/maxmin.c                                                              \
155   surf/lagrange.c                                                            \
156   surf/trace_mgr.c                                                           \
157   surf/surf.c                                                                \
158   surf/surfxml_parse.c                                                       \
159   surf/cpu.c   surf/network.c   surf/workstation.c                           \
160   surf/surf_timer.c                                                          \
161   surf/network_dassf.c                                                       \
162   surf/workstation_KCCFLN05.c
163
164 GTNETS_SRC= \
165   surf/gtnets/gtnets_simulator.cc \
166   surf/gtnets/gtnets_topology.cc  \
167   surf/gtnets/gtnets_interface.cc \
168   surf/network_gtnets.c
169
170 # Separated because we don't want it in libsimgrid4java
171 CTX_SRC= xbt/context.c
172 JCTX_SRC= java/jxbt_context.c java/jxbt_context.h xbt/xbt_os_thread.c
173
174 SIMIX_SRC= \
175   simix/smx_global.c \
176   simix/smx_deployment.c \
177   simix/smx_config.c \
178   simix/smx_environment.c \
179   simix/smx_host.c \
180   simix/smx_process.c \
181   simix/smx_action.c \
182   simix/smx_synchro.c
183
184 SMPI_SRC= \
185   smpi/smpi_base.c \
186   smpi/smpi_mpi.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 JMSG_C_SRC = \
193   java/jxbt_utilities.c     java/jxbt_utilities.h      \
194   java/jmsg.c               java/jmsg.h                \
195   java/jmsg_channel.c       java/jmsg_channel.h        \
196   java/jmsg_host.c          java/jmsg_host.h           \
197   java/jmsg_parallel_task.c java/jmsg_parallel_task.h  \
198   java/jmsg_process.c       java/jmsg_process.h        \
199   java/jmsg_task.c          java/jmsg_task.h
200
201 JMSG_JAVA_SRC = \
202   java/simgrid/msg/MsgException.java                 \
203   java/simgrid/msg/JniException.java                 \
204   java/simgrid/msg/NativeException.java              \
205   java/simgrid/msg/HostNotFoundException.java        \
206   java/simgrid/msg/ProcessNotFoundException.java     \
207   \
208   java/simgrid/msg/Process.java                      \
209   java/simgrid/msg/ApplicationHandler.java           \
210   java/simgrid/msg/Channel.java                      \
211   java/simgrid/msg/Host.java                         \
212   java/simgrid/msg/Msg.java                          \
213   java/simgrid/msg/Task.java                         \
214   java/simgrid/msg/ParallelTask.java                 
215
216 SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c simdag/sd_workstation.c
217
218 GRAS_COMMON_SRC= \
219   gras/gras.c  \
220   gras/Transport/transport.c          gras/Transport/transport_private.h  \
221   gras/Msg/gras_msg_mod.c             gras/Msg/gras_msg_types.c           \
222   gras/Msg/gras_msg_exchange.c        gras/Msg/gras_msg_listener.c        \
223   gras/Msg/rpc.c                      gras/Msg/timer.c                    \
224   gras/Msg/msg_interface.h            gras/Msg/msg_private.h              \
225   \
226   gras/Virtu/process.c gras/Virtu/gras_module.c  \
227   \
228   gras/DataDesc/ddt_create.c          \
229   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
230   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
231   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
232   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h
233
234 GRAS_RL_SRC= \
235   gras/rl_stubs.c                     xbt/xbt_os_thread.c                    \
236   \
237   gras/Transport/rl_transport.c          \
238   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
239   \
240   gras/Virtu/rl_emul.c \
241   gras/Virtu/rl_process.c \
242   gras/Virtu/rl_dns.c\
243   \
244   gras/Msg/rl_msg.c
245
246 GRAS_RL_SRC+=$(XBT_RL_SRC)
247
248 GRAS_SG_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
249   \
250   gras/Virtu/sg_emul.c \
251   gras/Virtu/sg_process.c   \
252   gras/Virtu/sg_dns.c\
253   \
254   gras/Msg/sg_msg.c
255
256 GRAS_SG_SRC+=$(XBT_SG_SRC)
257
258 AMOK_SRC= \
259   amok/amok_base.c \
260   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
261   amok/PeerManagement/peermanagement.c
262
263 ##############################
264 # Deal with optional modules #
265 ##############################
266
267 if HAVE_GTNETS
268   GTNETS_USED=$(GTNETS_SRC)
269 else
270   GTNETS_USED=
271   EXTRA_DIST+=$(GTNETS_SRC)
272 endif
273
274 if HAVE_SDP
275   SDP_SRC= surf/sdp.c
276 else 
277   SDP_SRC=
278   EXTRA_DIST+=surf/sdp.c
279 endif
280
281 ###
282 ### Declare the library content
283 ###
284
285 lib_LTLIBRARIES= libsimgrid.la libgras.la libsmpi.la
286
287 libgras_la_SOURCES=  $(XBT_SRC) $(GRAS_COMMON_SRC) $(GRAS_RL_SRC) $(AMOK_SRC)
288 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO)                     @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
289
290 libsimgrid_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) $(SDP_SRC) \
291                         $(SIMIX_SRC) $(CTX_SRC) \
292                         $(MSG_SRC) $(SIMDAG_SRC) \
293                         $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
294 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
295
296 libsmpi_la_LIBADD = libsimgrid.la
297 libsmpi_la_SOURCES = $(SMPI_SRC)
298 #libsmpi_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SMPI_DEP@ @LD_DYNAMIC_FLAGS@ -lm
299 libsmpi_la_LDFLAGS = -no-undefined $(VERSION_INFO) @LD_DYNAMIC_FLAGS@ -lm
300
301 ##
302 ## Java cruft
303
304 if HAVE_JAVA
305 lib_LTLIBRARIES += libsimgrid4java.la
306
307 libsimgrid4java_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) $(SDP_SRC) \
308                              $(SIMIX_SRC) $(JCTX_SRC) \
309                              $(JMSG_C_SRC) $(MSG_SRC) \
310                              $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
311 libsimgrid4java_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
312 libsimgrid4java_la_GCJFLAGS = -fjni
313
314 clean-local:
315         -rm -rf .classes
316
317 jardir = $(prefix)/jar 
318 jar_DATA =  simgrid.jar
319
320 simgrid.jar: $(JMSG_JAVA_SRC)
321         [ -e .classes ] || mkdir .classes
322         $(JAVAC) -sourcepath java -d .classes $(JMSG_JAVA_SRC)
323         $(JAR) cvf simgrid.jar -C .classes .;
324 else
325 EXTRA_DIST += $(JCTX_SRC) $(JMSG_C_SRC) $(MSG_SRC)
326 endif
327
328 if GRAMINE_MODE
329 else 
330 ###
331 ### Testing infrastructure
332 ###
333
334 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
335 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
336 # are generated. Sorry about that.
337
338 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
339 # make clean-units ; make testall
340
341 # Suites and tests run in the given order.
342
343 noinst_PROGRAMS=testall
344 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
345             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
346             xbt/xbt_str.c                      \
347             xbt/config.c 
348 TEST_UNITS= ./cunit_unit.c ./ex_unit.c         \
349             ./dynar_unit.c ./dict_unit.c ./set_unit.c ./swag_unit.c \
350             ./xbt_str_unit.c \
351             ./config_unit.c 
352
353 BUILT_SOURCES=../include/surf/surfxml.h surf/surfxml.c \
354               ../include/xbt/graphxml.h xbt/graphxml.c \
355               gras/DataDesc/ddt_parse.yy.c \
356               $(TEST_UNITS) simgrid_units_main.c
357
358 testall_SOURCES= $(TEST_UNITS) simgrid_units_main.c
359 testall_LDADD=libgras.la
360 TESTS=testall
361 TESTS_ENVIRONMENT=$(SG_TEST_EXENV)
362
363 EXTRA_DIST+=$(testall_SOURCES)
364
365 if MAINTAINER_MODE
366 ./cunit_unit.c: xbt/cunit.c
367         @top_srcdir@/tools/sg_unit_extractor.pl $^
368 ./ex_unit.c: xbt/ex.c
369         @top_srcdir@/tools/sg_unit_extractor.pl $^
370 ./xbt_str_unit.c: xbt/xbt_str.c
371         @top_srcdir@/tools/sg_unit_extractor.pl $^
372 ./dynar_unit.c: xbt/dynar.c
373         @top_srcdir@/tools/sg_unit_extractor.pl $^
374 ./dict_unit.c: xbt/dict.c
375         @top_srcdir@/tools/sg_unit_extractor.pl $^
376 ./set_unit.c: xbt/set.c
377         @top_srcdir@/tools/sg_unit_extractor.pl $^
378 ./swag_unit.c: xbt/swag.c
379         @top_srcdir@/tools/sg_unit_extractor.pl $^
380 ./config_unit.c: xbt/config.c
381         @top_srcdir@/tools/sg_unit_extractor.pl $^
382
383 simgrid_units_main.c: $(TEST_UNITS)
384         @top_srcdir@/tools/sg_unit_extractor.pl xbt/cunit.c
385
386 clean-units:
387         rm -f simgrid_units_main.c *_unit.c
388
389 else
390
391 $(TEST_UNITS) simgrid_units_main.c clean-units: 
392         @echo "ERROR: Test units not generated."
393         @echo "ERROR: If you are using a CVS checkout, configure with the --enable-maintainer-mode flag"
394         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
395         @exit 1
396
397 endif
398
399 ###
400 ### Regenerate what needs to with flex & flexml
401 ###
402
403
404 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
405         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
406
407 if MAINTAINER_MODE
408 surf/surfxml.c: surf/surfxml.l
409         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
410 xbt/graphxml.c: xbt/graphxml.l
411         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
412
413 if HAVE_FLEXML
414 surf/surfxml.l: $(srcdir)/surf/surfxml.dtd
415         set -e; mkdir -p surf; flexml -b 1000000 -P surfxml --sysid=surfxml.dtd -S $@ -L $^
416 $(top_srcdir)/include/surf/surfxml.h: $(srcdir)/surf/surfxml.dtd
417         set -e;                flexml            -P surfxml --sysid=surfxml.dtd -H $@ -L $^
418
419 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
420         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
421 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
422         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
423 else
424
425 $(top_srcdir)/include/surf/surfxml.h surf/surfxml.l: $(top_srcdir)/src/surf/surfxml.dtd
426         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
427         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
428         @echo "ERROR:   touch include/surf/surfxml.h src/surf/surfxml.l"
429         @exit 1
430 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
431         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
432         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
433         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
434         @exit 1
435 endif
436 endif
437 endif
438
439 include $(top_srcdir)/acmacro/dist-files.mk