Logo AND Algorithmique Numérique Distribuée

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