Logo AND Algorithmique Numérique Distribuée

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