Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Context factory's API simplification: the function for creating the
[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/log_private.h \
35         xbt/ex_interface.h \
36         xbt/backtrace_linux.c xbt/backtrace_windows.c xbt/backtrace_dummy.c \
37         \
38         surf/maxmin_private.h \
39         surf/trace_mgr_private.h \
40         surf/surf_private.h \
41         surf/surfxml_parse.c \
42         surf/simgrid_dtd.l \
43         surf/simgrid_dtd.c \
44         surf/simgrid.dtd \
45         surf/network_private.h \
46         surf/network_gtnets_private.h \
47         surf/gtnets/gtnets_interface.h \
48         surf/gtnets/gtnets_simulator.h \
49         surf/gtnets/gtnets_topology.h  \
50         \
51         include/surf/surf_resource.h  \
52         include/surf/datatypes.h \
53         include/surf/maxmin.h \
54         include/surf/trace_mgr.h \
55         include/surf/surf.h \
56         include/surf/surfxml_parse_private.h \
57         include/surf/random_mgr.h \
58         \
59         include/xbt/wine_dbghelp.h \
60         include/xbt/xbt_os_time.h \
61         include/xbt/xbt_os_thread.h \
62         \
63         msg/private.h \
64         msg/mailbox.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         include/simix/context.h \
79         simix/private.h \
80         simix/smx_context_private.h \
81         simix/smx_context_java.h \
82         \
83         smpi/private.h \
84         smpi/smpi_coll_private.h \
85       smpi/smpi_mpi_dt_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_model.c                                                          \
173   surf/surf_action.c                                                         \
174   surf/surf_routing.c                                                        \
175   surf/surf_config.c                                                         \
176   surf/maxmin.c                                                              \
177   surf/fair_bottleneck.c                                                     \
178   surf/lagrange.c                                                            \
179   surf/trace_mgr.c                                                           \
180   surf/random_mgr.c                                                          \
181   surf/surf.c                                                                \
182   surf/surfxml_parse.c                                                       \
183   surf/cpu.c   surf/network.c surf/network_constant.c surf/workstation.c     \
184   surf/surf_model_timer.c                                                    \
185   surf/workstation_ptask_L07.c                                               \
186   xbt/xbt_sg_stubs.c
187
188 if CONTEXT_THREADS
189   SURF_SRC +=  xbt/xbt_os_thread.c
190 endif
191
192 GTNETS_SRC= \
193   surf/gtnets/gtnets_simulator.cc \
194   surf/gtnets/gtnets_topology.cc  \
195   surf/gtnets/gtnets_interface.cc \
196   surf/network_gtnets.c
197
198 # Separated because src/gras/rl_stubs also define the function xbt_context_mod_init() and xbt_context_mod_exit()
199 # so there is an implementation of these functions in the simgrid library and an implementatin in the gras library 
200 CTX_SRC= simix/smx_context.c
201
202 SIMIX_SRC= \
203   simix/smx_global.c \
204   simix/smx_deployment.c \
205   simix/smx_environment.c \
206   simix/smx_host.c \
207   simix/smx_process.c \
208   simix/smx_action.c \
209   simix/smx_synchro.c
210   
211 if CONTEXT_THREADS
212   SURF_SRC += simix/smx_context_thread.c  
213 else  
214   SURF_SRC += simix/smx_context_sysv.c
215 endif  
216
217 SMPI_SRC= \
218   smpi/smpi_base.c \
219   smpi/smpi_bench.c \
220   smpi/smpi_global.c \
221   smpi/smpi_mpi.c \
222   smpi/smpi_sender.c \
223   smpi/smpi_receiver.c \
224   smpi/smpi_util.c \
225   smpi/smpi_coll.c \
226   smpi/smpi_mpi_dt.c
227
228 MSG_SRC=  msg/msg_config.c \
229   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
230   msg/global.c msg/environment.c msg/deployment.c msg/msg_mailbox.c \
231   msg/msg_actions.c
232
233 JMSG_C_SRC = \
234   simix/smx_context_java.c \
235   java/jxbt_utilities.c     java/jxbt_utilities.h      \
236   java/jmsg.c               java/jmsg.h                \
237   java/jmsg_channel.c       java/jmsg_channel.h        \
238   java/jmsg_host.c          java/jmsg_host.h           \
239   java/jmsg_process.c       java/jmsg_process.h        \
240   java/jmsg_task.c          java/jmsg_task.h           \
241   java/jmsg_application_handler.c java/jmsg_application_handler.h
242
243 JMSG_JAVA_SRC = \
244   java/simgrid/msg/MsgException.java                 \
245   java/simgrid/msg/JniException.java                 \
246   java/simgrid/msg/NativeException.java              \
247   java/simgrid/msg/HostNotFoundException.java        \
248   java/simgrid/msg/ProcessNotFoundException.java     \
249   \
250   java/simgrid/msg/Msg.java                          \
251   java/simgrid/msg/Process.java                      \
252   java/simgrid/msg/Host.java                         \
253   java/simgrid/msg/Task.java                         \
254   \
255   java/simgrid/msg/MsgNative.java                    \
256   java/simgrid/msg/DTDResolver.java                  \
257   java/simgrid/msg/ApplicationHandler.java           \
258   \
259   java/simgrid/msg/Sem.java
260
261
262 SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c simdag/sd_workstation.c
263
264 GRAS_COMMON_SRC= \
265   gras/gras.c  \
266   gras/Transport/transport.c          gras/Transport/transport_private.h  \
267   gras/Msg/gras_msg_mod.c             gras/Msg/gras_msg_types.c           \
268   gras/Msg/gras_msg_exchange.c        gras/Msg/gras_msg_listener.c        \
269   gras/Msg/rpc.c                      gras/Msg/timer.c                    \
270   gras/Msg/msg_interface.h            gras/Msg/msg_private.h              \
271   \
272   gras/Virtu/process.c gras/Virtu/gras_module.c  \
273   \
274   gras/DataDesc/ddt_create.c          \
275   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
276   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
277   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
278   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h
279
280 GRAS_RL_SRC= \
281   gras/rl_stubs.c                     xbt/xbt_os_thread.c                    \
282   \
283   gras/Transport/rl_transport.c          \
284   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
285   \
286   gras/Virtu/rl_emul.c \
287   gras/Virtu/rl_process.c \
288   gras/Virtu/rl_dns.c\
289   \
290   gras/Msg/rl_msg.c
291
292 GRAS_RL_SRC+=$(XBT_RL_SRC)
293
294 GRAS_SG_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
295   \
296   gras/Virtu/sg_emul.c \
297   gras/Virtu/sg_process.c   \
298   gras/Virtu/sg_dns.c\
299   \
300   gras/Msg/sg_msg.c
301
302 GRAS_SG_SRC+=$(XBT_SG_SRC)
303
304 AMOK_SRC= \
305   amok/amok_base.c \
306   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
307   amok/PeerManagement/peermanagement.c
308
309 ##############################
310 # Deal with optional modules #
311 ##############################
312
313 if HAVE_GTNETS
314   GTNETS_USED=$(GTNETS_SRC)
315 else
316   GTNETS_USED=
317   EXTRA_DIST+=$(GTNETS_SRC)
318 endif
319
320 ###
321 ### Declare the library content
322 ###
323
324 lib_LTLIBRARIES= libsimgrid.la libgras.la libsmpi.la
325
326 libgras_la_SOURCES=  $(XBT_SRC) $(GRAS_COMMON_SRC) $(GRAS_RL_SRC) $(AMOK_SRC)
327 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
328
329 libsimgrid_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) \
330                         $(SIMIX_SRC) $(CTX_SRC) \
331                         $(MSG_SRC) $(SIMDAG_SRC) \
332                         $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
333 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
334 # -Wl,--entry -Wl,simgrid_version
335
336 # Please do not add -no-undefined to libsmpi_la_LDFLAGS:
337 # smpi_simulated_main is indeed defined in user code, and undef in the
338 # library (no idea why it works under linux, but it fails under windows)
339 libsmpi_la_LIBADD = libsimgrid.la
340 libsmpi_la_SOURCES = $(SMPI_SRC)
341 libsmpi_la_LDFLAGS = $(VERSION_INFO) @SMPI_DEP@ @LD_DYNAMIC_FLAGS@ -lm
342
343 # Windows users (at least, MSVC ones) need a def file.
344 if IS_WINDOWS
345 libgras_la_LDFLAGS    += -Wl,--output-def,libgras.def
346 libsimgrid_la_LDFLAGS += -Wl,--output-def,libsimgrid.def
347 libsmpi_la_LDFLAGS    += -Wl,--output-def,libsmpi.def
348 endif
349
350 ##
351 ## Java cruft
352
353 EXTRA_DIST+=$(JMSG_JAVA_SRC)
354
355 if HAVE_JAVA
356 libsimgrid_la_SOURCES += $(JMSG_C_SRC) # add the binding support to the library
357
358 clean-local:
359         -rm -rf .classes
360
361 jardir = $(prefix)/jar
362 jar_DATA =  simgrid.jar
363
364 simgrid.jar: $(JMSG_JAVA_SRC) $(srcdir)/surf/simgrid.dtd
365         [ -e .classes ] || mkdir .classes
366         $(JAVAC) -d .classes $(foreach file,$(JMSG_JAVA_SRC),$(srcdir)/$(file))
367         [ -e .classes/surf ] || mkdir .classes/surf
368         cp $(srcdir)/surf/simgrid.dtd .classes/surf
369         $(JAR) cvf simgrid.jar -C .classes .
370 else
371 EXTRA_DIST+=$(JMSG_C_SRC) $(MSG_SRC)
372 endif
373
374 if GRAMINE_MODE
375 else 
376 ###
377 ### Testing infrastructure
378 ###
379
380 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
381 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
382 # are generated. Sorry about that.
383
384 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
385 # make clean-units ; make testall
386
387 # Suites and tests run in the given order.
388
389 noinst_PROGRAMS=testall
390 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
391             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
392             xbt/xbt_str.c  xbt/xbt_sha.c                \
393             xbt/config.c 
394 TEST_UNITS= @builddir@/cunit_unit.c   @builddir@/ex_unit.c         \
395             @builddir@/dynar_unit.c   @builddir@/dict_unit.c @builddir@/set_unit.c @builddir@/swag_unit.c \
396             @builddir@/xbt_str_unit.c @builddir@/xbt_strbuff_unit.c @builddir@/xbt_sha_unit.c\
397             @builddir@/config_unit.c 
398
399 BUILT_SOURCES=../include/surf/simgrid_dtd.h surf/simgrid_dtd.c \
400               ../include/xbt/graphxml.h xbt/graphxml.c \
401               gras/DataDesc/ddt_parse.yy.c \
402               $(TEST_UNITS) @builddir@/simgrid_units_main.c
403
404 testall_SOURCES= $(TEST_UNITS) @builddir@/simgrid_units_main.c
405 testall_LDADD=libgras.la
406 TESTS=testall
407 TESTS_ENVIRONMENT=$(SG_TEST_EXENV)
408
409 EXTRA_DIST+=$(testall_SOURCES)
410
411 if MAINTAINER_MODE
412 CLEANFILES=$(TEST_UNITS)
413
414 $(TEST_UNITS): xbt/cunit.c xbt/ex.c xbt/xbt_str.c xbt/xbt_strbuff.c xbt/xbt_sha.c\
415                xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c xbt/config.c
416         @top_srcdir@/tools/sg_unit_extractor.pl $^
417
418 @builddir@/simgrid_units_main.c: $(TEST_UNITS)
419         @top_srcdir@/tools/sg_unit_extractor.pl @srcdir@/xbt/cunit.c
420
421 clean-units:
422         rm -f simgrid_units_main.c *_unit.c @srcdir@/simgrid_units_main.c @srcdir@/*_unit.c
423         for n in $(TEST_UNITS) ; do \
424           dep=`echo $$n|sed -e 's|.c$$|.Po|' -e 's|[^/]*/||' -e 's|^|.deps/|'`; \
425           echo "Removing dependency tracker of $$n ($$dep @srcdir@/$$dep)"; \
426           rm -vf $$dep @srcdir@/$$dep; touch $$dep; \
427         done
428 else
429
430 if BOTBUILD_MODE
431 $(TEST_UNITS) simgrid_units_main.c clean-units: 
432         @echo "WARNING: Test units not generated, but touched instead since this is a bot build."
433         touch $@
434 else 
435 $(TEST_UNITS) simgrid_units_main.c clean-units: 
436         @echo "ERROR: Test units not generated."
437         @echo "ERROR: If you are using a SVN checkout, configure with the --enable-maintainer-mode flag"
438         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
439         @exit 1
440 endif
441 endif
442
443 ###
444 ### Regenerate what needs to with flex & flexml
445 ###
446
447
448 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
449         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
450
451 if MAINTAINER_MODE
452 surf/simgrid_dtd.c: surf/simgrid_dtd.l
453         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_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 xbt/graphxml.c: xbt/graphxml.l
456         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_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
459 if HAVE_FLEXML
460 surf/simgrid_dtd.l: $(srcdir)/surf/simgrid.dtd
461         set -e; mkdir -p surf; flexml --root-tags platform -b 1000000 -P surfxml --sysid=simgrid.dtd -S $@ -L $^ 
462 $(top_srcdir)/include/surf/simgrid_dtd.h: $(srcdir)/surf/simgrid.dtd
463         rm -f $(top_srcdir)/include/surf/simgrid.h 
464         set -e;                flexml --root-tags platform            -P surfxml --sysid=simgrid.dtd -H $@ -L $^ 
465         if test -e $(top_srcdir)/include/surf/simgrid.h ; then mv $(top_srcdir)/include/surf/simgrid.h $@ ; fi
466         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
467         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
468
469 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
470         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
471 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
472         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
473         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
474         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
475 else
476
477 $(top_srcdir)/include/surf/simgrid_dtd.h surf/simgrid_dtd.l: $(top_srcdir)/src/surf/simgrid.dtd
478         @echo "ERROR: src/surf/simgrid.dtd was modified, but the flexml program was not detected"
479         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
480         @echo "ERROR:   touch include/surf/simgrid_dtd.h src/surf/simgrid_dtd.l"
481         @exit 1
482 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
483         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
484         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
485         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
486         @exit 1
487 endif
488 endif
489 endif
490
491 include $(top_srcdir)/acmacro/dist-files.mk