Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Betterly integrated lua bindings (detected by configure, added to lib, simix interact...
[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/dict_private.h \
26         xbt/heap_private.h \
27         xbt/fifo_private.h \
28         xbt/graph_private.h \
29         xbt/graphxml_parse.c \
30         xbt/graphxml.l \
31         xbt/graphxml.c \
32         xbt/graphxml.dtd \
33         xbt/log_private.h \
34         xbt/ex_interface.h \
35         xbt/backtrace_linux.c xbt/backtrace_windows.c xbt/backtrace_dummy.c \
36         \
37         surf/maxmin_private.h \
38         surf/trace_mgr_private.h \
39         surf/surf_private.h \
40         surf/surfxml_parse.c \
41         surf/simgrid_dtd.l \
42         surf/simgrid_dtd.c \
43         surf/simgrid.dtd \
44         surf/network_private.h \
45         surf/network_gtnets_private.h \
46         surf/gtnets/gtnets_interface.h \
47         surf/gtnets/gtnets_simulator.h \
48         surf/gtnets/gtnets_topology.h  \
49         surf/cpu_ti_private.h \
50         \
51         include/surf/surf_resource.h  \
52         include/surf/datatypes.h \
53         include/surf/maxmin.h \
54         include/surf/trace_mgr.h \
55         include/surf/surf.h \
56         include/surf/surfxml_parse_private.h \
57         include/surf/random_mgr.h \
58         include/surf/surf_resource_lmm.h \
59         \
60         include/xbt/wine_dbghelp.h \
61         include/xbt/xbt_os_time.h \
62         include/xbt/xbt_os_thread.h \
63         \
64         msg/private.h \
65         msg/mailbox.h \
66         \
67         simdag/private.h \
68         simdag/dax.dtd \
69         simdag/dax_dtd.l \
70         simdag/dax_dtd.h \
71         simdag/dax_dtd.c \
72         \
73         gras/DataDesc/ddt_parse.yy.l \
74         gras/DataDesc/ddt_parse.yy.h \
75         gras/Virtu/virtu_rl.h \
76         gras/Virtu/virtu_sg.h \
77         gras/Virtu/virtu_interface.h \
78         gras/Virtu/virtu_private.h \
79         gras/Transport/transport_interface.h \
80         amok/Bandwidth/bandwidth_private.h \
81         amok/amok_modinter.h \
82         \
83         include/simix/simix.h include/simix/datatypes.h \
84         include/simix/context.h \
85         simix/private.h \
86         simix/smx_context_private.h \
87         simix/smx_context_java.h \
88         \
89         smpi/private.h \
90         smpi/smpi_coll_private.h \
91       smpi/smpi_mpi_dt_private.h \
92         smpi/README \
93         \
94         mk_supernovae.sh
95
96 #LIBRARY_VERSION= 0:0:0
97 #                 | | |
98 #          +------+ | +---+
99 #          |        |     |
100 #       current:revision:age
101 #          |        |     |
102 #          |        |     +- Increment if interfaces have been added
103 #          |        |        Set to zero if interfaces have been removed or
104 #          |        |        changed
105 #          |        +- Increment if source code has changed
106 #          |           Set to zero if current is incremented
107 #          +- Increment if interfaces have been added, removed or changed
108
109 VERSION_INFO= -version-info 2:0:0
110 # from `info libtool "Updating version info"` 
111 # and  `info libtool "Release numbers"` 
112 #
113 # A) For stable library (interface wise), you should use --version-info:
114 #
115 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
116 # - Do not update it before public release (keep numbers small)
117 #
118 # ----------------------------------------------------------------------+
119 # +   Interface     |  code of existing  | Interface | New version info |
120 # | removal/change? | interface changed? | addition? |                  |
121 # +-----------------+--------------------+-----------+------------------+
122 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
123 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
124 # |      no         |        yes         |    no     |  C   : R++ : A   |
125 # |      no         |        no          |    yes    |  C   : R   : A++ |
126 # |      no         |        no          |    no     |  C   : R   : A   |
127 # +-----------------+--------------------+-----------+------------------+
128 #
129 # B) For rapidely changing library, you should go for the -release flag
130 #
131 #  It modifies the library name, and you thus cannot say that a library
132 #   using this trick is ready for a "stable" release (say, in Debian).
133
134
135 ################################################
136 # Declaration of the different modules content #
137 ################################################
138
139 XBT_SRC=\
140   \
141   xbt/snprintf.c    xbt/xbt_str.c xbt/xbt_strbuff.c  xbt/xbt_sha.c           \
142   xbt/ex.c                                                                   \
143   \
144   xbt_modinter.h    gras_modinter.h                                          \
145   xbt/xbt_virtu.c                                                            \
146   \
147   xbt/xbt_os_time.c                                                          \
148   xbt/asserts.c                                                              \
149   xbt/log.c                    xbt/xbt_log_appender_file.c                   \
150   xbt/xbt_log_layout_simple.c  xbt/xbt_log_layout_format.c                   \
151   xbt/mallocator.c                                                           \
152   xbt/dynar.c                                                                \
153   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
154   xbt/dict_multi.c                                                           \
155   xbt/heap.c                                                                 \
156   xbt/fifo.c                                                                 \
157   xbt/swag.c                                                                 \
158   xbt/graph.c                                                                \
159   xbt/set.c                                                                  \
160   xbt/xbt_matrix.c                                                           \
161   \
162   xbt/xbt_queue.c  xbt/xbt_synchro.c                                         \
163   \
164   xbt/xbt_peer.c                                                             \
165   \
166   xbt/xbt_main.c                                                             \
167   \
168   xbt/config.c                                                               \
169   xbt/cunit.c                                                                \
170   xbt/graphxml_parse.c
171
172 XBT_RL_SRC = \
173   xbt/xbt_rl_synchro.c          \
174   xbt/xbt_rl_time.c
175 XBT_SG_SRC = \
176   xbt/xbt_sg_synchro.c          \
177   xbt/xbt_sg_time.c     
178
179 SURF_SRC= \
180   surf/surf_model.c                                                          \
181   surf/surf_action.c                                                         \
182   surf/surf_routing.c                                                        \
183   surf/surf_config.c                                                         \
184   surf/maxmin.c                                                              \
185   surf/fair_bottleneck.c                                                     \
186   surf/lagrange.c                                                            \
187   surf/trace_mgr.c                                                           \
188   surf/random_mgr.c                                                          \
189   surf/surf.c                                                                \
190   surf/surfxml_parse.c                                                       \
191   surf/cpu.c   surf/network.c surf/network_constant.c surf/workstation.c     \
192   surf/surf_model_timer.c                                                    \
193   surf/workstation_ptask_L07.c                                               \
194   surf/cpu_ti.c                                               \
195   surf/cpu_im.c                                               \
196   xbt/xbt_sg_stubs.c
197
198 GTNETS_SRC= \
199   surf/gtnets/gtnets_simulator.cc \
200   surf/gtnets/gtnets_topology.cc  \
201   surf/gtnets/gtnets_interface.cc \
202   surf/network_gtnets.c
203
204 SIMIX_SRC= \
205   simix/smx_global.c \
206   simix/smx_deployment.c \
207   simix/smx_environment.c \
208   simix/smx_host.c \
209   simix/smx_process.c \
210   simix/smx_context.c \
211   simix/smx_action.c \
212   simix/smx_synchro.c \
213   simix/smx_network.c
214   
215 if CONTEXT_THREADS
216   SURF_SRC += xbt/xbt_os_thread.c simix/smx_context_thread.c
217   EXTRA_DIST += simix/smx_context_sysv.c
218 else  
219   SURF_SRC += simix/smx_context_sysv.c
220   EXTRA_DIST += xbt/xbt_os_thread.c simix/smx_context_thread.c
221 endif  
222
223 SMPI_SRC= \
224   smpi/smpi_base.c \
225   smpi/smpi_bench.c \
226   smpi/smpi_global.c \
227   smpi/smpi_mpi.c \
228   smpi/smpi_sender.c \
229   smpi/smpi_receiver.c \
230   smpi/smpi_util.c \
231   smpi/smpi_coll.c \
232   smpi/smpi_mpi_dt.c
233
234 MSG_SRC=  msg/msg_config.c \
235   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
236   msg/global.c msg/environment.c msg/deployment.c msg/msg_mailbox.c \
237   msg/msg_actions.c
238
239 JMSG_C_SRC = \
240   simix/smx_context_java.c \
241   java/jxbt_utilities.c     java/jxbt_utilities.h      \
242   java/jmsg.c               java/jmsg.h                \
243   java/jmsg_channel.c       java/jmsg_channel.h        \
244   java/jmsg_host.c          java/jmsg_host.h           \
245   java/jmsg_process.c       java/jmsg_process.h        \
246   java/jmsg_task.c          java/jmsg_task.h           \
247   java/jmsg_application_handler.c java/jmsg_application_handler.h
248
249 JMSG_JAVA_SRC = \
250   java/simgrid/msg/MsgException.java                 \
251   java/simgrid/msg/JniException.java                 \
252   java/simgrid/msg/NativeException.java              \
253   java/simgrid/msg/HostNotFoundException.java        \
254   java/simgrid/msg/ProcessNotFoundException.java     \
255   \
256   java/simgrid/msg/Msg.java                          \
257   java/simgrid/msg/Process.java                      \
258   java/simgrid/msg/Host.java                         \
259   java/simgrid/msg/Task.java                         \
260   \
261   java/simgrid/msg/MsgNative.java                    \
262   java/simgrid/msg/DTDResolver.java                  \
263   java/simgrid/msg/ApplicationHandler.java           \
264   \
265   java/simgrid/msg/Sem.java
266
267
268 SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c \
269   simdag/sd_task.c simdag/sd_workstation.c \
270   simdag/sd_daxloader.c
271
272 GRAS_COMMON_SRC= \
273   gras/gras.c  \
274   gras/Transport/transport.c          gras/Transport/transport_private.h  \
275   gras/Msg/gras_msg_mod.c             gras/Msg/gras_msg_types.c           \
276   gras/Msg/gras_msg_exchange.c        gras/Msg/gras_msg_listener.c        \
277   gras/Msg/rpc.c                      gras/Msg/timer.c                    \
278   gras/Msg/msg_interface.h            gras/Msg/msg_private.h              \
279   \
280   gras/Virtu/process.c gras/Virtu/gras_module.c  \
281   \
282   gras/DataDesc/ddt_create.c          \
283   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
284   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
285   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
286   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c
287
288 GRAS_RL_SRC= \
289   gras/rl_stubs.c                     xbt/xbt_os_thread.c                    \
290   \
291   gras/Transport/rl_transport.c          \
292   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
293   \
294   gras/Virtu/rl_emul.c \
295   gras/Virtu/rl_process.c \
296   gras/Virtu/rl_dns.c\
297   \
298   gras/Msg/rl_msg.c
299
300 GRAS_RL_SRC+=$(XBT_RL_SRC)
301
302 GRAS_SG_SRC= gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
303   \
304   gras/Virtu/sg_emul.c \
305   gras/Virtu/sg_process.c   \
306   gras/Virtu/sg_dns.c\
307   \
308   gras/Msg/sg_msg.c
309
310 GRAS_SG_SRC+=$(XBT_SG_SRC)
311
312 AMOK_SRC= \
313   amok/amok_base.c \
314   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
315   amok/PeerManagement/peermanagement.c
316
317 ##############################
318 # Deal with optional modules #
319 ##############################
320
321 if HAVE_GTNETS
322   GTNETS_USED=$(GTNETS_SRC)
323 else
324   GTNETS_USED=
325   EXTRA_DIST+=$(GTNETS_SRC)
326 endif
327
328 ###
329 ### Declare the library content
330 ###
331
332 lib_LTLIBRARIES= libsimgrid.la libgras.la libsmpi.la
333
334 gras_sources=$(XBT_SRC) $(GRAS_COMMON_SRC) $(GRAS_RL_SRC) $(AMOK_SRC)
335 simgrid_sources=$(XBT_SRC) $(SURF_SRC) $(GTNETS_USED) \
336                 $(SIMIX_SRC) $(MSG_SRC) $(SIMDAG_SRC) \
337                 $(GRAS_COMMON_SRC) $(GRAS_SG_SRC) $(AMOK_SRC)
338
339
340 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
341
342 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
343 # -Wl,--entry -Wl,simgrid_version
344
345 # Please do not add -no-undefined to libsmpi_la_LDFLAGS:
346 # smpi_simulated_main is indeed defined in user code, and undef in the
347 # library (no idea why it works under linux, but it fails under windows)
348 libsmpi_la_LIBADD = libsimgrid.la
349 libsmpi_la_SOURCES = $(SMPI_SRC)
350 libsmpi_la_LDFLAGS = $(VERSION_INFO) @SMPI_DEP@ @LD_DYNAMIC_FLAGS@ -lm
351
352 # Windows users (at least, MSVC ones) need a def file.
353 if IS_WINDOWS
354 libgras_la_LDFLAGS    += -Wl,--output-def,libgras.def
355 libsimgrid_la_LDFLAGS += -Wl,--output-def,libsimgrid.def
356 libsmpi_la_LDFLAGS    += -Wl,--output-def,libsmpi.def
357 endif
358
359 ##
360 ## Java cruft
361
362 EXTRA_DIST+=$(JMSG_JAVA_SRC)
363
364 if HAVE_JAVA
365 simgrid_sources += $(JMSG_C_SRC) # add the binding support to the library
366
367 clean-local:
368         -rm -rf .classes simgrid.jar
369
370 jardir = $(prefix)/jar
371 jar_DATA =  simgrid.jar
372
373 simgrid.jar: $(JMSG_JAVA_SRC) $(srcdir)/surf/simgrid.dtd
374         [ -e .classes ] || mkdir .classes
375         $(JAVAC) -d .classes $(foreach file,$(JMSG_JAVA_SRC),$(srcdir)/$(file))
376         [ -e .classes/surf ] || mkdir .classes/surf
377         cp $(srcdir)/surf/simgrid.dtd .classes/surf
378         $(JAR) cvf simgrid.jar -C .classes .
379 else
380 EXTRA_DIST+=$(JMSG_C_SRC) $(JMSG_JAVA_SRC) $(MSG_SRC)
381 endif
382
383 LUA_SRC= simix/smx_context_lua.c bindings/lua/Msglua.c
384 if HAVE_LUA
385   simgrid_sources += $(LUA_SRC)
386 else
387   EXTRA_DIST += $(LUA_SRC)
388 endif
389 ##
390 ## Compile the libs
391 CLEANFILES=supernovae_sg.c supernovae_gras.c supernovae_smpi.c
392 BUILT_SOURCES=
393
394 # Cannot let automake autocompute the content of dist from
395 #  lib*_la_SOURCES variables since it would include supernovae files,
396 #  which are only generated sometimes, not always.
397 # So, use nodist_lib*_la_SOURCES variables and add stuff to EXTRA_DIST manually
398
399 EXTRA_DIST+=$(simgrid_sources) $(gras_sources)
400
401 if SUPERNOVAE_MODE
402 simgrid_fragile_sources=gras/DataDesc/ddt_parse.yy.c surf/surfxml_parse.c xbt/graphxml_parse.c simdag/sd_daxloader.c
403 gras_fragile_sources=gras/DataDesc/ddt_parse.yy.c xbt/graphxml_parse.c
404 BUILT_SOURCES+=supernovae_sg.c supernovae_gras.c supernovae_smpi.c
405
406 supernovae_sg.c: Makefile.am
407         @top_srcdir@/src/mk_supernovae.sh supernovae_sg.c $(filter-out $(simgrid_fragile_sources),$(simgrid_sources))
408 supernovae_gras.c: Makefile.am
409         @top_srcdir@/src/mk_supernovae.sh supernovae_gras.c $(filter-out $(gras_fragile_sources),$(gras_sources))
410 supernovae_smpi.c: Makefile.am
411         @top_srcdir@/src/mk_supernovae.sh supernovae_smpi.c $(filter-out $(smpi_fragile_sources),$(smpi_sources))
412
413 nodist_libsimgrid_la_SOURCES =  supernovae_sg.c $(simgrid_fragile_sources)
414 nodist_libgras_la_SOURCES = supernovae_gras.c $(gras_fragile_sources)
415 else
416 nodist_libsimgrid_la_SOURCES = $(simgrid_sources)
417 nodist_libgras_la_SOURCES = $(gras_sources)
418 endif
419
420
421 if GRAMINE_MODE
422 else 
423 ###
424 ### Testing infrastructure
425 ###
426
427 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
428 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
429 # are generated. Sorry about that.
430
431 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
432 # make clean-units ; make testall
433
434 # Suites and tests run in the given order.
435
436 noinst_PROGRAMS=testall
437 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
438             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
439             xbt/xbt_str.c  xbt/xbt_strbuff.c xbt/xbt_sha.c                \
440             xbt/config.c xbt/xbt_synchro.c
441 TEST_UNITS= @builddir@/cunit_unit.c   @builddir@/ex_unit.c         \
442             @builddir@/dynar_unit.c   @builddir@/dict_unit.c @builddir@/set_unit.c @builddir@/swag_unit.c \
443             @builddir@/xbt_str_unit.c @builddir@/xbt_strbuff_unit.c @builddir@/xbt_sha_unit.c\
444             @builddir@/config_unit.c  @builddir@/xbt_synchro_unit.c
445
446 BUILT_SOURCES+=../include/surf/simgrid_dtd.h surf/simgrid_dtd.c \
447               ../include/xbt/graphxml.h xbt/graphxml.c \
448               simdag/dax_dtd.h simdag/dax_dtd.c \
449               gras/DataDesc/ddt_parse.yy.c \
450               $(TEST_UNITS) @builddir@/simgrid_units_main.c
451
452 testall_SOURCES= $(TEST_UNITS) @builddir@/simgrid_units_main.c
453 testall_LDADD=libgras.la
454 TESTS=testall
455 TESTS_ENVIRONMENT=$(SG_TEST_EXENV)
456
457 EXTRA_DIST+=$(testall_SOURCES)
458
459 if MAINTAINER_MODE
460 CLEANFILES+=$(TEST_UNITS)
461
462 $(TEST_UNITS): $(TEST_CFILES)
463         @top_srcdir@/tools/sg_unit_extractor.pl $^
464
465 @builddir@/simgrid_units_main.c: $(TEST_UNITS)
466         @top_srcdir@/tools/sg_unit_extractor.pl @srcdir@/xbt/cunit.c
467
468 clean-units:
469         rm -f simgrid_units_main.c *_unit.c @srcdir@/simgrid_units_main.c @srcdir@/*_unit.c
470         for n in $(TEST_UNITS) ; do \
471           dep=`echo $$n|sed -e 's|.c$$|.Po|' -e 's|[^/]*/||' -e 's|^|.deps/|'`; \
472           echo "Removing dependency tracker of $$n ($$dep @srcdir@/$$dep)"; \
473           rm -vf $$dep @srcdir@/$$dep; touch $$dep; \
474         done
475 else
476
477 if BOTBUILD_MODE
478 $(TEST_UNITS) simgrid_units_main.c clean-units: 
479         @echo "WARNING: Test units not generated, but touched instead since this is a bot build."
480         touch $@
481 else 
482 $(TEST_UNITS) simgrid_units_main.c clean-units: 
483         @echo "ERROR: Test units not generated."
484         @echo "ERROR: If you are using a SVN checkout, configure with the --enable-maintainer-mode flag"
485         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
486         @exit 1
487 endif
488 endif
489
490 ###
491 ### Regenerate what needs to with flex & flexml
492 ###
493
494
495 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
496         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
497
498 if MAINTAINER_MODE
499 surf/simgrid_dtd.c: surf/simgrid_dtd.l
500         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
501         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 $@
502 xbt/graphxml.c: xbt/graphxml.l
503         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
504         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 $@
505 simdag/dax_dtd.c: simdag/dax_dtd.l
506         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pdax_ --noline $^
507         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 $@
508
509 if HAVE_FLEXML
510 surf/simgrid_dtd.l: $(srcdir)/surf/simgrid.dtd
511         set -e; mkdir -p surf; flexml --root-tags platform -b 1000000 -P surfxml --sysid=simgrid.dtd -S $@ -L $^ 
512 $(top_srcdir)/include/surf/simgrid_dtd.h: $(srcdir)/surf/simgrid.dtd
513         rm -f $(top_srcdir)/include/surf/simgrid.h 
514         set -e;                flexml --root-tags platform            -P surfxml --sysid=simgrid.dtd -H $@ -L $^ 
515         if test -e $(top_srcdir)/include/surf/simgrid.h ; then mv $(top_srcdir)/include/surf/simgrid.h $@ ; fi
516         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
517         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
518
519 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
520         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
521 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
522         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
523         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
524         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
525
526 simdag/dax_dtd.l: simdag/dax.dtd
527         set -e; flexml -b 1000000 --root-tags adag -P dax_ --sysid=dax.dtd -S $@ -L $^
528         sed -i 's/SET(DOCTYPE)/SET(ROOT_dax__adag)/' simdag/dax_dtd.l # DOCTYPE not mandatory
529 simdag/dax_dtd.h: simdag/dax.dtd
530         set -e; flexml            --root-tags adag -P dax_ --sysid=dax.dtd -H $@ -L $^
531         sed 's/extern  *\([^ ]*[ \*]*\)/XBT_PUBLIC_DATA(\1) /' -i $@
532         sed 's/XBT_PUBLIC_DATA(\([^)]*\)) *\([^(]*\)(/XBT_PUBLIC(\1) \2(/' -i $@
533 else
534
535 $(top_srcdir)/include/surf/simgrid_dtd.h surf/simgrid_dtd.l: $(top_srcdir)/src/surf/simgrid.dtd
536         @echo "WARNING: src/surf/simgrid.dtd seem to be modified, but the flexml program was not detected"
537         @echo "WARNING: Please install it if you did modify this file."
538         @echo "WARNING: For now, I'll ignore the change"
539         touch $(top_srcdir)/include/surf/simgrid_dtd.h $(top_srcdir)/src/surf/simgrid_dtd.l
540 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
541         @echo "WARNING: src/xbt/graphxml.dtd seem to be modified, but the flexml program was not detected"
542         @echo "WARNING: Please install it if you did modify this file."
543         @echo "WARNING: For now, I'll ignore the change"
544         touch $(top_srcdir)/include/xbt/graphxml.h $(top_srcdir)/src/xbt/graphxml.l"
545 simdag/dax_dtd.h simdag/dax_dtd.l: simdag/dax.dtd
546         @echo "WARNING: src/simdag/dax.dtd seem to be modified, but the flexml program was not detected"
547         @echo "WARNING: Please install it if you did modify this file."
548         @echo "WARNING: For now, I'll ignore the change"
549         touch $(top_srcdir)/src/simdag/dax_dtd.h $(top_srcdir)/src/simdag/dax_dtd.l
550 endif
551 endif
552 endif
553
554 include $(top_srcdir)/acmacro/dist-files.mk