Logo AND Algorithmique Numérique Distribuée

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