Logo AND Algorithmique Numérique Distribuée

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