Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Yeah, right. We should prevent to push the socket into the dynar in gras_trp_socket_n...
[simgrid.git] / src / Makefile.am
1 #AM_CFLAGS= -DNDEBUG 
2
3 # -DNLOG   cuts absolutely all logs at compilation time.
4 # -DNDEBUG cuts asserts and logs at "trace" and "debug" levels.
5
6
7
8 MAINTAINERCLEANFILES=Makefile.in
9 INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/src/include
10 EXTRA_DIST= \
11         \
12         portable.h \
13         \
14         xbt/mallocator_private.h \
15         xbt/dynar_private.h \
16         xbt/dict_private.h \
17         xbt/heap_private.h \
18         xbt/fifo_private.h \
19         xbt/graph_private.h \
20         xbt/graphxml_parse.c \
21         xbt/graphxml.l \
22         xbt/graphxml.c \
23         xbt/graphxml.dtd \
24         xbt/context_private.h \
25         xbt/ex_interface.h \
26         \
27         surf/maxmin_private.h \
28         surf/trace_mgr_private.h \
29         surf/surf_private.h \
30         surf/cpu_private.h \
31         surf/workstation_private.h \
32         surf/surf_timer_private.h \
33         surf/surfxml_parse.c \
34         surf/surfxml.l \
35         surf/surfxml.c \
36         surf/surfxml.dtd \
37         surf/network_private.h \
38         surf/network_dassf_private.h \
39         surf/workstation_KCCFLN05_private.h \
40         \
41         include/surf/maxmin.h \
42         include/surf/trace_mgr.h \
43         include/surf/surf.h \
44         include/surf/surfxml_parse_private.h \
45         \
46         include/xbt/xbt_os_time.h \
47         include/xbt/xbt_os_thread.h \
48         include/xbt/context.h \
49         \
50         msg/private.h \
51         \
52         simdag/private.h \
53         \
54         gras/DataDesc/ddt_parse.yy.l \
55         gras/Virtu/virtu_interface.h \
56         amok/Bandwidth/bandwidth_private.h \
57         amok/amok_modinter.h
58         \
59         include/simix/simix.h include/simix/datatypes.h \
60         simix/msg_simix_private.h \
61         \
62         smpi/private.h smpi/smpi.h
63
64 #LIBRARY_VERSION= 0:0:0
65 #                 | | |
66 #          +------+ | +---+
67 #          |        |     |
68 #       current:revision:age
69 #          |        |     |
70 #          |        |     +- Increment if interfaces have been added
71 #          |        |        Set to zero if interfaces have been removed or
72 #          |        |        changed
73 #          |        +- Increment if source code has changed
74 #          |           Set to zero if current is incremented
75 #          +- Increment if interfaces have been added, removed or changed
76
77 VERSION_INFO= -version-info 2:0:0
78 # from `info libtool "Updating version info"` 
79 # and  `info libtool "Release numbers"` 
80 #
81 # A) For stable library (interface wise), you should use --version-info:
82 #
83 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
84 # - Do not update it before public release (keep numbers small)
85 #
86 # ----------------------------------------------------------------------+
87 # +   Interface     |  code of existing  | Interface | New version info |
88 # | removal/change? | interface changed? | addition? |                  |
89 # +-----------------+--------------------+-----------+------------------+
90 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
91 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
92 # |      no         |        yes         |    no     |  C   : R++ : A   |
93 # |      no         |        no          |    yes    |  C   : R   : A++ |
94 # |      no         |        no          |    no     |  C   : R   : A   |
95 # +-----------------+--------------------+-----------+------------------+
96 #
97 # B) For rapidely changing library, you should go for the -release flag
98 #
99 #  It modifies the library name, and you thus cannot say that a library
100 #   using this trick is ready for a "stable" release (say, in Debian).
101
102
103 ################################################
104 # Declaration of the different modules content #
105 ################################################
106
107 XBT_SRC=\
108   \
109   xbt/snprintf.c    xbt/xbt_str.c                                            \
110   xbt/ex.c                                                                   \
111   \
112   xbt_modinter.h    gras_modinter.h                                          \
113   xbt/xbt_virtu.c                                                            \
114   \
115   xbt/xbt_os_time.c                                                          \
116   xbt/asserts.c                                                              \
117   xbt/log.c                    xbt/xbt_log_appender_file.c                   \
118   xbt/xbt_log_layout_simple.c  xbt/xbt_log_layout_format.c                   \
119   xbt/mallocator.c                                                           \
120   xbt/dynar.c                                                                \
121   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
122   xbt/dict_multi.c                                                           \
123   xbt/heap.c                                                                 \
124   xbt/fifo.c                                                                 \
125   xbt/swag.c                                                                 \
126   xbt/graph.c                                                                \
127   xbt/set.c                                                                  \
128   xbt/xbt_matrix.c                                                           \
129   \
130   xbt/xbt_queue.c                                                            \
131   \
132   xbt/xbt_peer.c                                                             \
133   \
134   xbt/xbt_main.c                                                             \
135   \
136   xbt/config.c                                                               \
137   xbt/cunit.c                                                                \
138   xbt/graphxml_parse.c
139
140 XBT_RL_SRC = \
141   xbt/xbt_rl_synchro.c          \
142   xbt/xbt_rl_time.c
143 XBT_SG_SRC = \
144   xbt/xbt_sg_synchro.c          \
145   xbt/xbt_sg_time.c     
146
147 SURF_SRC= \
148   surf/maxmin.c                                                              \
149   surf/lagrange.c                                                            \
150   surf/trace_mgr.c                                                           \
151   surf/surf.c                                                                \
152   surf/surfxml_parse.c                                                       \
153   surf/cpu.c   surf/network.c   surf/workstation.c                           \
154   surf/surf_timer.c                                                          \
155   surf/network_dassf.c                                                       \
156   surf/workstation_KCCFLN05.c
157
158 if CONTEXT_THREADS
159   SURF_SRC += xbt/xbt_os_thread.c
160 else  
161   SURF_SRC += xbt/xbt_os_thread_stubs.c
162 endif
163
164 GTNETS_SRC= \
165   surf/gtnets/gtnets_simulator.cc \
166   surf/gtnets/gtnets_topology.cc  \
167   surf/gtnets/gtnets_interface.cc \
168   surf/network_gtnets.c
169
170 # Separated because we don't want it in libsimgrid4java
171 CTX_SRC= xbt/context.c
172 JCTX_SRC= java/jxbt_context.c java/jxbt_context.h
173
174 SIMIX_SRC= \
175   simix/smx_global.c \
176   simix/smx_deployment.c \
177   simix/smx_config.c \
178   simix/smx_environment.c \
179   simix/smx_host.c \
180   simix/smx_process.c \
181   simix/smx_action.c \
182   simix/smx_synchro.c
183
184 SMPI_SRC= \
185   smpi/smpi_base.c \
186   smpi/smpi_mpi.c
187
188 MSG_SRC=  msg/msg_config.c \
189   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
190   msg/global.c msg/environment.c msg/deployment.c 
191
192 JMSG_C_SRC = \
193   java/jxbt_utilities.c     java/jxbt_utilities.h      \
194   java/jmsg.c               java/jmsg.h                \
195   java/jmsg_channel.c       java/jmsg_channel.h        \
196   java/jmsg_host.c          java/jmsg_host.h           \
197   java/jmsg_parallel_task.c java/jmsg_parallel_task.h  \
198   java/jmsg_process.c       java/jmsg_process.h        \
199   java/jmsg_task.c          java/jmsg_task.h
200
201 JMSG_JAVA_SRC = \
202   java/simgrid/msg/MsgException.java                 \
203   java/simgrid/msg/JniException.java                 \
204   java/simgrid/msg/NativeException.java              \
205   java/simgrid/msg/HostNotFoundException.java        \
206   java/simgrid/msg/ProcessNotFoundException.java     \
207   \
208   java/simgrid/msg/Process.java                      \
209   java/simgrid/msg/ApplicationHandler.java           \
210   java/simgrid/msg/Channel.java                      \
211   java/simgrid/msg/Host.java                         \
212   java/simgrid/msg/Msg.java                          \
213   java/simgrid/msg/Task.java                         \
214   java/simgrid/msg/ParallelTask.java                 
215
216 SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c simdag/sd_workstation.c
217
218 GRAS_COMMON_SRC= \
219   gras/gras.c  \
220   gras/Transport/transport.c          gras/Transport/transport_private.h  \
221   gras/Msg/gras_msg_mod.c             gras/Msg/gras_msg_types.c           \
222   gras/Msg/gras_msg_exchange.c        gras/Msg/gras_msg_listener.c        \
223   gras/Msg/rpc.c                      gras/Msg/timer.c                    \
224   gras/Msg/msg_interface.h            gras/Msg/msg_private.h              \
225   \
226   gras/Virtu/process.c gras/Virtu/gras_module.c  \
227   \
228   gras/DataDesc/ddt_create.c          \
229   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
230   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
231   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
232   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h
233
234 GRAS_RL_SRC= \
235   gras/rl_stubs.c                     xbt/xbt_os_thread.c                    \
236   \
237   gras/Transport/rl_transport.c          \
238   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
239   \
240   gras/Virtu/rl_emul.c \
241   gras/Virtu/rl_process.c \
242   gras/Virtu/rl_dns.c\
243   \
244   gras/Msg/rl_msg.c
245
246 GRAS_RL_SRC+=$(XBT_RL_SRC)
247
248 GRAS_SG_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
249   \
250   gras/Virtu/sg_emul.c \
251   gras/Virtu/sg_process.c   \
252   gras/Virtu/sg_dns.c\
253   \
254   gras/Msg/sg_msg.c
255
256 GRAS_SG_SRC+=$(XBT_SG_SRC)
257
258 AMOK_SRC= \
259   amok/amok_base.c \
260   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
261   amok/PeerManagement/peermanagement.c
262
263 ##############################
264 # Deal with optional modules #
265 ##############################
266
267 if HAVE_GTNETS
268   GTNETS_USED=$(GTNETS_SRC)
269 else
270   GTNETS_USED=
271   EXTRA_DIST+=$(GTNETS_SRC)
272 endif
273
274 if HAVE_SDP
275   SDP_SRC= surf/sdp.c
276 else 
277   SDP_SRC=
278   EXTRA_DIST+=surf/sdp.c
279 endif
280
281 ###
282 ### Declare the library content
283 ###
284
285 lib_LTLIBRARIES= libsimgrid.la libgras.la libsmpi.la
286
287 libgras_la_SOURCES=  $(XBT_SRC) $(GRAS_COMMON_SRC) $(GRAS_RL_SRC) $(AMOK_SRC)
288 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
289
290 libsimgrid_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) $(SDP_SRC) \
291                         $(SIMIX_SRC) $(CTX_SRC) \
292                         $(MSG_SRC) $(SIMDAG_SRC) \
293                         $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
294 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
295
296 # Please do not add -no-undefined to libsmpi_la_LDFLAGS:
297 # smpi_simulated_main is indeed defined in user code, and undef in the
298 # library (no idea why it works under linux, but it fails under windows)
299 libsmpi_la_LIBADD = libsimgrid.la
300 libsmpi_la_SOURCES = $(SMPI_SRC)
301 libsmpi_la_LDFLAGS = $(VERSION_INFO) @SMPI_DEP@ @LD_DYNAMIC_FLAGS@ -lm
302
303
304 ##
305 ## Java cruft
306
307 if HAVE_JAVA
308 lib_LTLIBRARIES += libsimgrid4java.la
309
310 libsimgrid4java_la_SOURCES = $(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) $(SDP_SRC) \
311                              $(SIMIX_SRC) $(JCTX_SRC) \
312                              $(JMSG_C_SRC) $(MSG_SRC) \
313                              $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
314 libsimgrid4java_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
315 libsimgrid4java_la_GCJFLAGS = -fjni
316
317 clean-local:
318         -rm -rf .classes
319
320 jardir = $(prefix)/jar 
321 jar_DATA =  simgrid.jar
322
323 simgrid.jar: $(JMSG_JAVA_SRC)
324         [ -e .classes ] || mkdir .classes
325         $(JAVAC) -sourcepath java -d .classes $(JMSG_JAVA_SRC)
326         $(JAR) cvf simgrid.jar -C .classes .;
327 else
328 EXTRA_DIST += $(JCTX_SRC) $(JMSG_C_SRC) $(MSG_SRC)
329 endif
330
331 if GRAMINE_MODE
332 else 
333 ###
334 ### Testing infrastructure
335 ###
336
337 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
338 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
339 # are generated. Sorry about that.
340
341 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
342 # make clean-units ; make testall
343
344 # Suites and tests run in the given order.
345
346 noinst_PROGRAMS=testall
347 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
348             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
349             xbt/xbt_str.c                      \
350             xbt/config.c 
351 TEST_UNITS= @builddir@/cunit_unit.c @builddir@/ex_unit.c         \
352             @builddir@/dynar_unit.c @builddir@/dict_unit.c @builddir@/set_unit.c @builddir@/swag_unit.c \
353             @builddir@/xbt_str_unit.c \
354             @builddir@/config_unit.c 
355 CLEANFILES=$(TEST_UNITS)
356
357 BUILT_SOURCES=../include/surf/surfxml.h surf/surfxml.c \
358               ../include/xbt/graphxml.h xbt/graphxml.c \
359               gras/DataDesc/ddt_parse.yy.c \
360               $(TEST_UNITS) @builddir@/simgrid_units_main.c
361
362 testall_SOURCES= $(TEST_UNITS) @builddir@/simgrid_units_main.c
363 testall_LDADD=libgras.la
364 TESTS=testall
365 TESTS_ENVIRONMENT=$(SG_TEST_EXENV)
366
367 EXTRA_DIST+=$(testall_SOURCES)
368
369 if MAINTAINER_MODE
370 @builddir@/cunit_unit.c: xbt/cunit.c
371         @top_srcdir@/tools/sg_unit_extractor.pl $^
372 @builddir@/ex_unit.c: xbt/ex.c
373         @top_srcdir@/tools/sg_unit_extractor.pl $^
374 @builddir@/xbt_str_unit.c: xbt/xbt_str.c
375         @top_srcdir@/tools/sg_unit_extractor.pl $^
376 @builddir@/dynar_unit.c: xbt/dynar.c
377         @top_srcdir@/tools/sg_unit_extractor.pl $^
378 @builddir@/dict_unit.c: xbt/dict.c
379         @top_srcdir@/tools/sg_unit_extractor.pl $^
380 @builddir@/set_unit.c: xbt/set.c
381         @top_srcdir@/tools/sg_unit_extractor.pl $^
382 @builddir@/swag_unit.c: xbt/swag.c
383         @top_srcdir@/tools/sg_unit_extractor.pl $^
384 @builddir@/config_unit.c: xbt/config.c
385         @top_srcdir@/tools/sg_unit_extractor.pl $^
386
387 @builddir@/simgrid_units_main.c: $(TEST_UNITS)
388         @top_srcdir@/tools/sg_unit_extractor.pl @srcdir@/xbt/cunit.c
389
390 clean-units:
391         rm -f simgrid_units_main.c *_unit.c @srcdir@/simgrid_units_main.c @srcdir@/*_unit.c
392         for n in $(TEST_UNITS) ; do \
393           dep=`echo $$n|sed -e 's|.c$$|.Po|' -e 's|[^/]*/||' -e 's|^|.deps/|'`; \
394           echo "Removing dependency tracker of $$n ($$dep @srcdir@/$$dep)"; \
395           rm -vf $$dep @srcdir@/$$dep; touch $$dep; \
396         done
397 else
398
399 $(TEST_UNITS) simgrid_units_main.c clean-units: 
400         @echo "ERROR: Test units not generated."
401         @echo "ERROR: If you are using a CVS checkout, configure with the --enable-maintainer-mode flag"
402         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
403         @exit 1
404
405 endif
406
407 ###
408 ### Regenerate what needs to with flex & flexml
409 ###
410
411
412 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
413         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
414
415 if MAINTAINER_MODE
416 surf/surfxml.c: surf/surfxml.l
417         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
418 xbt/graphxml.c: xbt/graphxml.l
419         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
420
421 if HAVE_FLEXML
422 surf/surfxml.l: $(srcdir)/surf/surfxml.dtd
423         set -e; mkdir -p surf; flexml -b 1000000 -P surfxml --sysid=surfxml.dtd -S $@ -L $^
424 $(top_srcdir)/include/surf/surfxml.h: $(srcdir)/surf/surfxml.dtd
425         set -e;                flexml            -P surfxml --sysid=surfxml.dtd -H $@ -L $^
426
427 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
428         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
429 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
430         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
431 else
432
433 $(top_srcdir)/include/surf/surfxml.h surf/surfxml.l: $(top_srcdir)/src/surf/surfxml.dtd
434         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
435         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
436         @echo "ERROR:   touch include/surf/surfxml.h src/surf/surfxml.l"
437         @exit 1
438 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
439         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
440         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
441         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
442         @exit 1
443 endif
444 endif
445 endif
446
447 include $(top_srcdir)/acmacro/dist-files.mk