Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SMPI: Kill the global list of senders and receivers
[simgrid.git] / src / Makefile.am
1 # Copyright (c) 2004-2007. The SimGrid team. All right reserved.
2
3 # This file is part of the SimGrid project. This is free software:
4 # You can redistribute and/or modify it under the terms of the
5 # GNU LGPL (v2.1) licence.
6
7
8 #AM_CFLAGS= -DNDEBUG 
9
10 # -DNLOG   cuts absolutely all logs at compilation time.
11 # -DNDEBUG cuts asserts and logs at "trace" and "debug" levels.
12
13
14
15 MAINTAINERCLEANFILES=Makefile.in
16 INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/src/include
17
18 bin_SCRIPTS= smpi/smpicc smpi/smpirun
19
20 EXTRA_DIST= \
21         \
22         portable.h \
23         \
24         xbt/mallocator_private.h \
25         xbt/dynar_private.h \
26         xbt/dict_private.h \
27         xbt/heap_private.h \
28         xbt/fifo_private.h \
29         xbt/graph_private.h \
30         xbt/graphxml_parse.c \
31         xbt/graphxml.l \
32         xbt/graphxml.c \
33         xbt/graphxml.dtd \
34         xbt/xbt_context_private.h \
35         xbt/xbt_context_java.h \
36         xbt/log_private.h \
37         xbt/ex_interface.h \
38         xbt/backtrace_linux.c xbt/backtrace_windows.c xbt/backtrace_dummy.c \
39         \
40         surf/maxmin_private.h \
41         surf/trace_mgr_private.h \
42         surf/surf_private.h \
43         surf/cpu_private.h \
44         surf/workstation_private.h \
45         surf/surf_timer_private.h \
46         surf/surfxml_parse.c \
47         surf/simgrid_dtd.l \
48         surf/simgrid_dtd.c \
49         surf/simgrid.dtd \
50         surf/network_private.h \
51         surf/network_common.h \
52         surf/network_gtnets_private.h \
53         surf/gtnets/gtnets_interface.h \
54         surf/gtnets/gtnets_simulator.h \
55         surf/gtnets/gtnets_topology.h  \
56         \
57         include/surf/maxmin.h \
58         include/surf/trace_mgr.h \
59         include/surf/surf.h \
60         include/surf/surfxml_parse_private.h \
61         include/surf/random_mgr.h \
62         \
63         include/xbt/wine_dbghelp.h \
64         include/xbt/context.h \
65         include/xbt/xbt_os_time.h \
66         include/xbt/xbt_os_thread.h \
67         \
68         msg/private.h \
69         msg/mailbox.h \
70         \
71         simdag/private.h \
72         \
73         gras/DataDesc/ddt_parse.yy.l \
74         gras/Virtu/virtu_rl.h \
75         gras/Virtu/virtu_sg.h \
76         gras/Virtu/virtu_interface.h \
77         gras/Virtu/virtu_private.h \
78         gras/Transport/transport_interface.h \
79         amok/Bandwidth/bandwidth_private.h \
80         amok/amok_modinter.h \
81         \
82         include/simix/simix.h include/simix/datatypes.h \
83         simix/private.h \
84         \
85         smpi/private.h
86
87 #LIBRARY_VERSION= 0:0:0
88 #                 | | |
89 #          +------+ | +---+
90 #          |        |     |
91 #       current:revision:age
92 #          |        |     |
93 #          |        |     +- Increment if interfaces have been added
94 #          |        |        Set to zero if interfaces have been removed or
95 #          |        |        changed
96 #          |        +- Increment if source code has changed
97 #          |           Set to zero if current is incremented
98 #          +- Increment if interfaces have been added, removed or changed
99
100 VERSION_INFO= -version-info 2:0:0
101 # from `info libtool "Updating version info"` 
102 # and  `info libtool "Release numbers"` 
103 #
104 # A) For stable library (interface wise), you should use --version-info:
105 #
106 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
107 # - Do not update it before public release (keep numbers small)
108 #
109 # ----------------------------------------------------------------------+
110 # +   Interface     |  code of existing  | Interface | New version info |
111 # | removal/change? | interface changed? | addition? |                  |
112 # +-----------------+--------------------+-----------+------------------+
113 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
114 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
115 # |      no         |        yes         |    no     |  C   : R++ : A   |
116 # |      no         |        no          |    yes    |  C   : R   : A++ |
117 # |      no         |        no          |    no     |  C   : R   : A   |
118 # +-----------------+--------------------+-----------+------------------+
119 #
120 # B) For rapidely changing library, you should go for the -release flag
121 #
122 #  It modifies the library name, and you thus cannot say that a library
123 #   using this trick is ready for a "stable" release (say, in Debian).
124
125
126 ################################################
127 # Declaration of the different modules content #
128 ################################################
129
130 XBT_SRC=\
131   \
132   xbt/snprintf.c    xbt/xbt_str.c xbt/xbt_strbuff.c  xbt/xbt_sha.c           \
133   xbt/ex.c                                                                   \
134   \
135   xbt_modinter.h    gras_modinter.h                                          \
136   xbt/xbt_virtu.c                                                            \
137   \
138   xbt/xbt_os_time.c                                                          \
139   xbt/asserts.c                                                              \
140   xbt/log.c                    xbt/xbt_log_appender_file.c                   \
141   xbt/xbt_log_layout_simple.c  xbt/xbt_log_layout_format.c                   \
142   xbt/mallocator.c                                                           \
143   xbt/dynar.c                                                                \
144   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
145   xbt/dict_multi.c                                                           \
146   xbt/heap.c                                                                 \
147   xbt/fifo.c                                                                 \
148   xbt/swag.c                                                                 \
149   xbt/graph.c                                                                \
150   xbt/set.c                                                                  \
151   xbt/xbt_matrix.c                                                           \
152   \
153   xbt/xbt_queue.c                                                            \
154   \
155   xbt/xbt_peer.c                                                             \
156   \
157   xbt/xbt_main.c                                                             \
158   \
159   xbt/config.c                                                               \
160   xbt/cunit.c                                                                \
161   xbt/graphxml_parse.c
162
163 XBT_RL_SRC = \
164   xbt/xbt_rl_synchro.c          \
165   xbt/xbt_rl_time.c
166 XBT_SG_SRC = \
167   xbt/xbt_sg_synchro.c          \
168   xbt/xbt_sg_time.c     
169
170 SURF_SRC= \
171   surf/maxmin.c                                                              \
172   surf/fair_bottleneck.c                                                              \
173   surf/lagrange.c                                                            \
174   surf/trace_mgr.c                                                           \
175   surf/random_mgr.c                                                           \
176   surf/surf.c                                                                \
177   surf/surfxml_parse.c                                                       \
178   surf/cpu.c   surf/network.c surf/network_constant.c surf/workstation.c     \
179   surf/surf_timer.c                                                          \
180   surf/workstation_ptask_L07.c                                               \
181   xbt/xbt_sg_stubs.c
182
183 if CONTEXT_THREADS
184   SURF_SRC +=  xbt/xbt_os_thread.c xbt/xbt_context_thread.c  
185 else  
186   SURF_SRC += xbt/xbt_context_sysv.c
187 endif
188
189 GTNETS_SRC= \
190   surf/gtnets/gtnets_simulator.cc \
191   surf/gtnets/gtnets_topology.cc  \
192   surf/gtnets/gtnets_interface.cc \
193   surf/network_gtnets.c
194
195 # Separated because src/gras/rl_stubs also define the function xbt_context_mod_init() and xbt_context_mod_exit()
196 # so there is an implementation of these functions in the simgrid library and an implementatin in the gras library 
197 CTX_SRC= xbt/xbt_context.c
198
199 SIMIX_SRC= \
200   simix/smx_global.c \
201   simix/smx_deployment.c \
202   simix/smx_config.c \
203   simix/smx_environment.c \
204   simix/smx_host.c \
205   simix/smx_process.c \
206   simix/smx_action.c \
207   simix/smx_synchro.c
208
209 SMPI_SRC= \
210   smpi/smpi_base.c \
211   smpi/smpi_bench.c \
212   smpi/smpi_global.c \
213   smpi/smpi_mpi.c \
214   smpi/smpi_sender.c \
215   smpi/smpi_receiver.c \
216   smpi/smpi_util.c
217
218 MSG_SRC=  msg/msg_config.c \
219   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
220   msg/global.c msg/environment.c msg/deployment.c msg/msg_mailbox.c \
221   msg/msg_actions.c
222
223 JMSG_C_SRC = \
224   xbt/xbt_context_java.c \
225   java/jxbt_utilities.c     java/jxbt_utilities.h      \
226   java/jmsg.c               java/jmsg.h                \
227   java/jmsg_channel.c       java/jmsg_channel.h        \
228   java/jmsg_host.c          java/jmsg_host.h           \
229   java/jmsg_process.c       java/jmsg_process.h        \
230   java/jmsg_task.c          java/jmsg_task.h           \
231   java/jmsg_application_handler.c java/jmsg_application_handler.h
232
233 JMSG_JAVA_SRC = \
234   java/simgrid/msg/MsgException.java                 \
235   java/simgrid/msg/JniException.java                 \
236   java/simgrid/msg/NativeException.java              \
237   java/simgrid/msg/HostNotFoundException.java        \
238   java/simgrid/msg/ProcessNotFoundException.java     \
239   \
240   java/simgrid/msg/Msg.java                          \
241   java/simgrid/msg/Process.java                      \
242   java/simgrid/msg/Host.java                         \
243   java/simgrid/msg/Task.java                         \
244   \
245   java/simgrid/msg/MsgNative.java                    \
246   java/simgrid/msg/DTDResolver.java                  \
247   java/simgrid/msg/ApplicationHandler.java           \
248   \
249   java/simgrid/msg/Sem.java
250
251
252 SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c simdag/sd_workstation.c
253
254 GRAS_COMMON_SRC= \
255   gras/gras.c  \
256   gras/Transport/transport.c          gras/Transport/transport_private.h  \
257   gras/Msg/gras_msg_mod.c             gras/Msg/gras_msg_types.c           \
258   gras/Msg/gras_msg_exchange.c        gras/Msg/gras_msg_listener.c        \
259   gras/Msg/rpc.c                      gras/Msg/timer.c                    \
260   gras/Msg/msg_interface.h            gras/Msg/msg_private.h              \
261   \
262   gras/Virtu/process.c gras/Virtu/gras_module.c  \
263   \
264   gras/DataDesc/ddt_create.c          \
265   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
266   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
267   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
268   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h
269
270 GRAS_RL_SRC= \
271   gras/rl_stubs.c                     xbt/xbt_os_thread.c                    \
272   \
273   gras/Transport/rl_transport.c          \
274   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
275   \
276   gras/Virtu/rl_emul.c \
277   gras/Virtu/rl_process.c \
278   gras/Virtu/rl_dns.c\
279   \
280   gras/Msg/rl_msg.c
281
282 GRAS_RL_SRC+=$(XBT_RL_SRC)
283
284 GRAS_SG_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
285   \
286   gras/Virtu/sg_emul.c \
287   gras/Virtu/sg_process.c   \
288   gras/Virtu/sg_dns.c\
289   \
290   gras/Msg/sg_msg.c
291
292 GRAS_SG_SRC+=$(XBT_SG_SRC)
293
294 AMOK_SRC= \
295   amok/amok_base.c \
296   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
297   amok/PeerManagement/peermanagement.c
298
299 ##############################
300 # Deal with optional modules #
301 ##############################
302
303 if HAVE_GTNETS
304   GTNETS_USED=$(GTNETS_SRC)
305 else
306   GTNETS_USED=
307   EXTRA_DIST+=$(GTNETS_SRC)
308 endif
309
310 if HAVE_SDP
311   SDP_SRC= surf/sdp.c
312 else 
313   SDP_SRC=
314   EXTRA_DIST+=surf/sdp.c
315 endif
316
317 ###
318 ### Declare the library content
319 ###
320
321 lib_LTLIBRARIES= libsimgrid.la libgras.la libsmpi.la
322
323 libgras_la_SOURCES=  $(XBT_SRC) $(GRAS_COMMON_SRC) $(GRAS_RL_SRC) $(AMOK_SRC)
324 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
325
326 libsimgrid_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) $(SDP_SRC) \
327                         $(SIMIX_SRC) $(CTX_SRC) \
328                         $(MSG_SRC) $(SIMDAG_SRC) \
329                         $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
330 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
331 # -Wl,--entry -Wl,simgrid_version
332
333 # Please do not add -no-undefined to libsmpi_la_LDFLAGS:
334 # smpi_simulated_main is indeed defined in user code, and undef in the
335 # library (no idea why it works under linux, but it fails under windows)
336 libsmpi_la_LIBADD = libsimgrid.la
337 libsmpi_la_SOURCES = $(SMPI_SRC)
338 libsmpi_la_LDFLAGS = $(VERSION_INFO) @SMPI_DEP@ @LD_DYNAMIC_FLAGS@ -lm
339
340 # Windows users (at least, MSVC ones) need a def file.
341 if IS_WINDOWS
342 libgras_la_LDFLAGS    += -Wl,--output-def,libgras.def
343 libsimgrid_la_LDFLAGS += -Wl,--output-def,libsimgrid.def
344 libsmpi_la_LDFLAGS    += -Wl,--output-def,libsmpi.def
345 endif
346
347 ##
348 ## Java cruft
349
350 EXTRA_DIST+=$(JMSG_JAVA_SRC)
351
352 if HAVE_JAVA
353 libsimgrid_la_SOURCES += $(JMSG_C_SRC) # add the binding support to the library
354
355 clean-local:
356         -rm -rf .classes
357
358 jardir = $(prefix)/jar
359 jar_DATA =  simgrid.jar
360
361 simgrid.jar: $(JMSG_JAVA_SRC) $(srcdir)/surf/simgrid.dtd
362         [ -e .classes ] || mkdir .classes
363         $(JAVAC) -d .classes $(foreach file,$(JMSG_JAVA_SRC),$(srcdir)/$(file))
364         [ -e .classes/surf ] || mkdir .classes/surf
365         cp $(srcdir)/surf/simgrid.dtd .classes/surf
366         $(JAR) cvf simgrid.jar -C .classes .
367 else
368 EXTRA_DIST+=$(JMSG_C_SRC) $(MSG_SRC)
369 endif
370
371 if GRAMINE_MODE
372 else 
373 ###
374 ### Testing infrastructure
375 ###
376
377 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
378 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
379 # are generated. Sorry about that.
380
381 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
382 # make clean-units ; make testall
383
384 # Suites and tests run in the given order.
385
386 noinst_PROGRAMS=testall
387 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
388             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
389             xbt/xbt_str.c  xbt/xbt_sha.c                \
390             xbt/config.c 
391 TEST_UNITS= @builddir@/cunit_unit.c   @builddir@/ex_unit.c         \
392             @builddir@/dynar_unit.c   @builddir@/dict_unit.c @builddir@/set_unit.c @builddir@/swag_unit.c \
393             @builddir@/xbt_str_unit.c @builddir@/xbt_strbuff_unit.c @builddir@/xbt_sha_unit.c\
394             @builddir@/config_unit.c 
395
396 BUILT_SOURCES=../include/surf/simgrid_dtd.h surf/simgrid_dtd.c \
397               ../include/xbt/graphxml.h xbt/graphxml.c \
398               gras/DataDesc/ddt_parse.yy.c \
399               $(TEST_UNITS) @builddir@/simgrid_units_main.c
400
401 testall_SOURCES= $(TEST_UNITS) @builddir@/simgrid_units_main.c
402 testall_LDADD=libgras.la
403 TESTS=testall
404 TESTS_ENVIRONMENT=$(SG_TEST_EXENV)
405
406 EXTRA_DIST+=$(testall_SOURCES)
407
408 if MAINTAINER_MODE
409 CLEANFILES=$(TEST_UNITS)
410
411 $(TEST_UNITS): xbt/cunit.c xbt/ex.c xbt/xbt_str.c xbt/xbt_strbuff.c xbt/xbt_sha.c\
412                xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c xbt/config.c
413         @top_srcdir@/tools/sg_unit_extractor.pl $^
414
415 @builddir@/simgrid_units_main.c: $(TEST_UNITS)
416         @top_srcdir@/tools/sg_unit_extractor.pl @srcdir@/xbt/cunit.c
417
418 clean-units:
419         rm -f simgrid_units_main.c *_unit.c @srcdir@/simgrid_units_main.c @srcdir@/*_unit.c
420         for n in $(TEST_UNITS) ; do \
421           dep=`echo $$n|sed -e 's|.c$$|.Po|' -e 's|[^/]*/||' -e 's|^|.deps/|'`; \
422           echo "Removing dependency tracker of $$n ($$dep @srcdir@/$$dep)"; \
423           rm -vf $$dep @srcdir@/$$dep; touch $$dep; \
424         done
425 else
426
427 if BOTBUILD_MODE
428 $(TEST_UNITS) simgrid_units_main.c clean-units: 
429         @echo "WARNING: Test units not generated, but touched instead since this is a bot build."
430         touch $@
431 else 
432 $(TEST_UNITS) simgrid_units_main.c clean-units: 
433         @echo "ERROR: Test units not generated."
434         @echo "ERROR: If you are using a SVN checkout, configure with the --enable-maintainer-mode flag"
435         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
436         @exit 1
437 endif
438 endif
439
440 ###
441 ### Regenerate what needs to with flex & flexml
442 ###
443
444
445 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
446         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
447
448 if MAINTAINER_MODE
449 surf/simgrid_dtd.c: surf/simgrid_dtd.l
450         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
451         sed 's/#include <unistd.h>/#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__TOS_WIN__)\n#  ifndef __STRICT_ANSI__\n#    include <io.h>\n#    include <process.h>\n#  endif\n#else\n#  include <unistd.h>\n#endif/g' -i $@
452 xbt/graphxml.c: xbt/graphxml.l
453         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
454         sed 's/#include <unistd.h>/#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__TOS_WIN__)\n#  ifndef __STRICT_ANSI__\n#    include <io.h>\n#    include <process.h>\n#  endif\n#else\n#  include <unistd.h>\n#endif/g' -i $@
455
456 if HAVE_FLEXML
457 surf/simgrid_dtd.l: $(srcdir)/surf/simgrid.dtd
458         set -e; mkdir -p surf; flexml --root-tags platform -b 1000000 -P surfxml --sysid=simgrid.dtd -S $@ -L $^ 
459 $(top_srcdir)/include/surf/simgrid_dtd.h: $(srcdir)/surf/simgrid.dtd
460         rm -f $(top_srcdir)/include/surf/simgrid.h 
461         set -e;                flexml --root-tags platform            -P surfxml --sysid=simgrid.dtd -H $@ -L $^ 
462         if test -e $(top_srcdir)/include/surf/simgrid.h ; then mv $(top_srcdir)/include/surf/simgrid.h $@ ; fi
463         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
464         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
465
466 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
467         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
468 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
469         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
470         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
471         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
472 else
473
474 $(top_srcdir)/include/surf/simgrid_dtd.h surf/simgrid_dtd.l: $(top_srcdir)/src/surf/simgrid.dtd
475         @echo "ERROR: src/surf/simgrid.dtd was modified, but the flexml program was not detected"
476         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
477         @echo "ERROR:   touch include/surf/simgrid_dtd.h src/surf/simgrid_dtd.l"
478         @exit 1
479 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
480         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
481         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
482         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
483         @exit 1
484 endif
485 endif
486 endif
487
488 include $(top_srcdir)/acmacro/dist-files.mk