Logo AND Algorithmique Numérique Distribuée

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