Logo AND Algorithmique Numérique Distribuée

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