Logo AND Algorithmique Numérique Distribuée

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