Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Introduce log appenders
[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
222 JMSG_C_SRC = \
223   xbt/xbt_context_java.c \
224   java/jxbt_utilities.c     java/jxbt_utilities.h      \
225   java/jmsg.c               java/jmsg.h                \
226   java/jmsg_channel.c       java/jmsg_channel.h        \
227   java/jmsg_host.c          java/jmsg_host.h           \
228   java/jmsg_process.c       java/jmsg_process.h        \
229   java/jmsg_task.c          java/jmsg_task.h           \
230   java/jmsg_application_handler.c java/jmsg_application_handler.h
231
232 JMSG_JAVA_SRC = \
233   java/simgrid/msg/MsgException.java                 \
234   java/simgrid/msg/JniException.java                 \
235   java/simgrid/msg/NativeException.java              \
236   java/simgrid/msg/HostNotFoundException.java        \
237   java/simgrid/msg/ProcessNotFoundException.java     \
238   \
239   java/simgrid/msg/Msg.java                          \
240   java/simgrid/msg/Process.java                      \
241   java/simgrid/msg/Host.java                         \
242   java/simgrid/msg/Task.java                         \
243   \
244   java/simgrid/msg/MsgNative.java                    \
245   java/simgrid/msg/DTDResolver.java                  \
246   java/simgrid/msg/ApplicationHandler.java           \
247   \
248   java/simgrid/msg/Sem.java
249
250
251 SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c simdag/sd_workstation.c
252
253 GRAS_COMMON_SRC= \
254   gras/gras.c  \
255   gras/Transport/transport.c          gras/Transport/transport_private.h  \
256   gras/Msg/gras_msg_mod.c             gras/Msg/gras_msg_types.c           \
257   gras/Msg/gras_msg_exchange.c        gras/Msg/gras_msg_listener.c        \
258   gras/Msg/rpc.c                      gras/Msg/timer.c                    \
259   gras/Msg/msg_interface.h            gras/Msg/msg_private.h              \
260   \
261   gras/Virtu/process.c gras/Virtu/gras_module.c  \
262   \
263   gras/DataDesc/ddt_create.c          \
264   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
265   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
266   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
267   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h
268
269 GRAS_RL_SRC= \
270   gras/rl_stubs.c                     xbt/xbt_os_thread.c                    \
271   \
272   gras/Transport/rl_transport.c          \
273   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
274   \
275   gras/Virtu/rl_emul.c \
276   gras/Virtu/rl_process.c \
277   gras/Virtu/rl_dns.c\
278   \
279   gras/Msg/rl_msg.c
280
281 GRAS_RL_SRC+=$(XBT_RL_SRC)
282
283 GRAS_SG_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
284   \
285   gras/Virtu/sg_emul.c \
286   gras/Virtu/sg_process.c   \
287   gras/Virtu/sg_dns.c\
288   \
289   gras/Msg/sg_msg.c
290
291 GRAS_SG_SRC+=$(XBT_SG_SRC)
292
293 AMOK_SRC= \
294   amok/amok_base.c \
295   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
296   amok/PeerManagement/peermanagement.c
297
298 ##############################
299 # Deal with optional modules #
300 ##############################
301
302 if HAVE_GTNETS
303   GTNETS_USED=$(GTNETS_SRC)
304 else
305   GTNETS_USED=
306   EXTRA_DIST+=$(GTNETS_SRC)
307 endif
308
309 if HAVE_SDP
310   SDP_SRC= surf/sdp.c
311 else 
312   SDP_SRC=
313   EXTRA_DIST+=surf/sdp.c
314 endif
315
316 ###
317 ### Declare the library content
318 ###
319
320 lib_LTLIBRARIES= libsimgrid.la libgras.la libsmpi.la
321
322 libgras_la_SOURCES=  $(XBT_SRC) $(GRAS_COMMON_SRC) $(GRAS_RL_SRC) $(AMOK_SRC)
323 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
324
325 libsimgrid_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) $(SDP_SRC) \
326                         $(SIMIX_SRC) $(CTX_SRC) \
327                         $(MSG_SRC) $(SIMDAG_SRC) \
328                         $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
329 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
330 # -Wl,--entry -Wl,simgrid_version
331
332 # Please do not add -no-undefined to libsmpi_la_LDFLAGS:
333 # smpi_simulated_main is indeed defined in user code, and undef in the
334 # library (no idea why it works under linux, but it fails under windows)
335 libsmpi_la_LIBADD = libsimgrid.la
336 libsmpi_la_SOURCES = $(SMPI_SRC)
337 libsmpi_la_LDFLAGS = $(VERSION_INFO) @SMPI_DEP@ @LD_DYNAMIC_FLAGS@ -lm
338
339 # Windows users (at least, MSVC ones) need a def file.
340 if IS_WINDOWS
341 libgras_la_LDFLAGS    += -Wl,--output-def,libgras.def
342 libsimgrid_la_LDFLAGS += -Wl,--output-def,libsimgrid.def
343 libsmpi_la_LDFLAGS    += -Wl,--output-def,libsmpi.def
344 endif
345
346 ##
347 ## Java cruft
348
349 EXTRA_DIST+=$(JMSG_JAVA_SRC)
350
351 if HAVE_JAVA
352 libsimgrid_la_SOURCES += $(JMSG_C_SRC) # add the binding support to the library
353
354 clean-local:
355         -rm -rf .classes
356
357 jardir = $(prefix)/jar
358 jar_DATA =  simgrid.jar
359
360 simgrid.jar: $(JMSG_JAVA_SRC) $(srcdir)/surf/simgrid.dtd
361         [ -e .classes ] || mkdir .classes
362         $(JAVAC) -d .classes $(foreach file,$(JMSG_JAVA_SRC),$(srcdir)/$(file))
363         [ -e .classes/surf ] || mkdir .classes/surf
364         cp $(srcdir)/surf/simgrid.dtd .classes/surf
365         $(JAR) cvf simgrid.jar -C .classes .
366 else
367 EXTRA_DIST+=$(JMSG_C_SRC) $(MSG_SRC)
368 endif
369
370 if GRAMINE_MODE
371 else 
372 ###
373 ### Testing infrastructure
374 ###
375
376 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
377 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
378 # are generated. Sorry about that.
379
380 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
381 # make clean-units ; make testall
382
383 # Suites and tests run in the given order.
384
385 noinst_PROGRAMS=testall
386 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
387             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
388             xbt/xbt_str.c  xbt/xbt_sha.c                \
389             xbt/config.c 
390 TEST_UNITS= @builddir@/cunit_unit.c   @builddir@/ex_unit.c         \
391             @builddir@/dynar_unit.c   @builddir@/dict_unit.c @builddir@/set_unit.c @builddir@/swag_unit.c \
392             @builddir@/xbt_str_unit.c @builddir@/xbt_strbuff_unit.c @builddir@/xbt_sha_unit.c\
393             @builddir@/config_unit.c 
394
395 BUILT_SOURCES=../include/surf/simgrid_dtd.h surf/simgrid_dtd.c \
396               ../include/xbt/graphxml.h xbt/graphxml.c \
397               gras/DataDesc/ddt_parse.yy.c \
398               $(TEST_UNITS) @builddir@/simgrid_units_main.c
399
400 testall_SOURCES= $(TEST_UNITS) @builddir@/simgrid_units_main.c
401 testall_LDADD=libgras.la
402 TESTS=testall
403 TESTS_ENVIRONMENT=$(SG_TEST_EXENV)
404
405 EXTRA_DIST+=$(testall_SOURCES)
406
407 if MAINTAINER_MODE
408 CLEANFILES=$(TEST_UNITS)
409
410 $(TEST_UNITS): xbt/cunit.c xbt/ex.c xbt/xbt_str.c xbt/xbt_strbuff.c xbt/xbt_sha.c\
411                xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c xbt/config.c
412         @top_srcdir@/tools/sg_unit_extractor.pl $^
413
414 @builddir@/simgrid_units_main.c: $(TEST_UNITS)
415         @top_srcdir@/tools/sg_unit_extractor.pl @srcdir@/xbt/cunit.c
416
417 clean-units:
418         rm -f simgrid_units_main.c *_unit.c @srcdir@/simgrid_units_main.c @srcdir@/*_unit.c
419         for n in $(TEST_UNITS) ; do \
420           dep=`echo $$n|sed -e 's|.c$$|.Po|' -e 's|[^/]*/||' -e 's|^|.deps/|'`; \
421           echo "Removing dependency tracker of $$n ($$dep @srcdir@/$$dep)"; \
422           rm -vf $$dep @srcdir@/$$dep; touch $$dep; \
423         done
424 else
425
426 if BOTBUILD_MODE
427 $(TEST_UNITS) simgrid_units_main.c clean-units: 
428         @echo "WARNING: Test units not generated, but touched instead since this is a bot build."
429         touch $@
430 else 
431 $(TEST_UNITS) simgrid_units_main.c clean-units: 
432         @echo "ERROR: Test units not generated."
433         @echo "ERROR: If you are using a SVN checkout, configure with the --enable-maintainer-mode flag"
434         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
435         @exit 1
436 endif
437 endif
438
439 ###
440 ### Regenerate what needs to with flex & flexml
441 ###
442
443
444 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
445         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
446
447 if MAINTAINER_MODE
448 surf/simgrid_dtd.c: surf/simgrid_dtd.l
449         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
450         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 $@
451 xbt/graphxml.c: xbt/graphxml.l
452         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
453         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 $@
454
455 if HAVE_FLEXML
456 surf/simgrid_dtd.l: $(srcdir)/surf/simgrid.dtd
457         set -e; mkdir -p surf; flexml --root-tags platform -b 1000000 -P surfxml --sysid=simgrid.dtd -S $@ -L $^ 
458 $(top_srcdir)/include/surf/simgrid_dtd.h: $(srcdir)/surf/simgrid.dtd
459         rm -f $(top_srcdir)/include/surf/simgrid.h 
460         set -e;                flexml --root-tags platform            -P surfxml --sysid=simgrid.dtd -H $@ -L $^ 
461         if test -e $(top_srcdir)/include/surf/simgrid.h ; then mv $(top_srcdir)/include/surf/simgrid.h $@ ; fi
462         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
463         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
464
465 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
466         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
467 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
468         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
469         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
470         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
471 else
472
473 $(top_srcdir)/include/surf/simgrid_dtd.h surf/simgrid_dtd.l: $(top_srcdir)/src/surf/simgrid.dtd
474         @echo "ERROR: src/surf/simgrid.dtd was modified, but the flexml program was not detected"
475         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
476         @echo "ERROR:   touch include/surf/simgrid_dtd.h src/surf/simgrid_dtd.l"
477         @exit 1
478 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
479         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
480         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
481         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
482         @exit 1
483 endif
484 endif
485 endif
486
487 include $(top_srcdir)/acmacro/dist-files.mk