Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c895516afb5c1d28081d54dbb2c08e3a09e4dab1
[simgrid.git] / src / Makefile.am
1 AM_CFLAGS= -g
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 xbt/context_win32.h xbt/context_win32.c\
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_portability.h \
52         include/xbt/context.h \
53         \
54         msg/private.h \
55         \
56         simdag/private.h \
57         \
58         gras/Transport/transport_interface.h \
59         gras/Virtu/virtu_interface.h          gras/Virtu/virtu_private.h\
60         gras/Virtu/virtu_rl.h                 gras/Virtu/virtu_sg.h \
61         gras/DataDesc/ddt_parse.yy.l          gras/DataDesc/ddt_parse.yy.c \
62         \
63         amok/Bandwidth/bandwidth_private.h \
64         amok/amok_modinter.h
65
66 if USE_SIMIX
67   EXTRA_DIST+=include/simix/simix.h
68 endif
69
70 #        gras_private.h
71
72 #LIBRARY_VERSION= 0:0:0
73 #                 | | |
74 #          +------+ | +---+
75 #          |        |     |
76 #       current:revision:age
77 #          |        |     |
78 #          |        |     +- Increment if interfaces have been added
79 #          |        |        Set to zero if interfaces have been removed or
80 #          |        |        changed
81 #          |        +- Increment if source code has changed
82 #          |           Set to zero if current is incremented
83 #          +- Increment if interfaces have been added, removed or changed
84
85 VERSION_INFO= -version-info 0:0:0
86 # from `info libtool "Updating version info"` 
87 # and  `info libtool "Release numbers"` 
88 #
89 # A) For stable library (interface wise), you should use --version-info:
90 #
91 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
92 # - Do not update it before public release (keep numbers small)
93 #
94 # ----------------------------------------------------------------------+
95 # +   Interface     |  code of existing  | Interface | New version info |
96 # | removal/change? | interface changed? | addition? |                  |
97 # +-----------------+--------------------+-----------+------------------+
98 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
99 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
100 # |      no         |        yes         |    no     |  C   : R++ : A   |
101 # |      no         |        no          |    yes    |  C   : R   : A++ |
102 # |      no         |        no          |    no     |  C   : R   : A   |
103 # +-----------------+--------------------+-----------+------------------+
104 #
105 # B) For rapidely changing library, you should go for the -release flag
106 #
107 #  It modifies the library name, and you thus cannot say that a library
108 #   using this trick is ready for a "stable" release (say, in Debian).
109
110 lib_LTLIBRARIES= libsimgrid.la libgras.la
111
112 COMMON_SRC=\
113   \
114   xbt/snprintf.c                                                             \
115   xbt/ex.c                                                                   \
116   \
117   xbt_modinter.h    gras_modinter.h                                          \
118   \
119   xbt/sysdep.c                                                               \
120   xbt/asserts.c                                                              \
121   xbt/log.c         xbt/log_default_appender.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   xbt/xbt_peer.c                                                             \
133   xbt/xbt_main.c                                                             \
134   xbt/config.c                                                               \
135   xbt/cunit.c                                                                \
136   xbt/graphxml_parse.c                                                       \
137   \
138   gras/gras.c \
139   \
140   gras/Transport/transport.c          gras/Transport/transport_private.h  \
141   \
142   gras/DataDesc/ddt_create.c          \
143   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
144   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
145   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
146   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h \
147   \
148   gras/Msg/msg.c                      gras/Msg/rpc.c                       gras/Msg/timer.c                 \
149   gras/Msg/msg_interface.h            gras/Msg/msg_private.h           \
150   \
151   gras/Virtu/process.c gras/Virtu/gras_module.c
152
153 RL_SRC= \
154   gras/Transport/rl_transport.c          \
155   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
156   \
157   gras/Virtu/rl_emul.c \
158   gras/Virtu/rl_process.c        gras/Virtu/rl_time.c \
159   gras/Virtu/rl_dns.c\
160   \
161   gras/Msg/rl_msg.c
162
163 SG_SRC=  \
164   xbt/context.c                                                              \
165   \
166   surf/maxmin.c                                                              \
167   surf/trace_mgr.c                                                           \
168   surf/surf.c                                                                \
169   surf/surfxml_parse.c                                                       \
170   surf/cpu.c   surf/network.c   surf/workstation.c                           \
171   surf/surf_timer.c                                                          \
172   surf/network_dassf.c                                                       \
173   surf/workstation_KCCFLN05.c  \
174   \
175   msg/msg_config.c \
176   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
177   msg/global.c msg/environment.c msg/deployment.c  \
178   \
179   simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c                       \
180   simdag/sd_workstation.c                                                    \
181   \
182   gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c        \
183   \
184   gras/Virtu/sg_emul.c \
185   gras/Virtu/sg_process.c        gras/Virtu/sg_time.c     \
186   gras/Virtu/sg_dns.c\
187   \
188   gras/Msg/sg_msg.c
189
190 if HAVE_SDP
191   SG_SRC+= surf/sdp.c  
192 endif
193
194 if USE_SIMIX
195   SG_SRC+=simix/smx_global.c
196 endif
197
198 AMOK_SRC= \
199   amok/amok_base.c \
200   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c \
201   amok/PeerManagement/peermanagement.c
202
203 if GRAMINE_MODE
204 else 
205 ###
206 ### Testing infrastructure
207 ###
208
209 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
210 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
211 # are generated. Sorry about that.
212
213 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
214 # make clean-units ; make testall
215
216 # Suites and tests run in the given order.
217
218 noinst_PROGRAMS=testall
219 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
220             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
221             xbt/config.c
222 TEST_UNITS= cunit_unit.c ex_unit.c         \
223             dynar_unit.c dict_unit.c set_unit.c swag_unit.c \
224             config_unit.c
225
226 BUILT_SOURCES=../include/surf/surfxml.h surf/surfxml.c \
227               ../include/xbt/graphxml.h xbt/graphxml.c \
228               gras/DataDesc/ddt_parse.yy.c \
229               $(TEST_UNITS) simgrid_units_main.c
230
231 testall_SOURCES= $(TEST_UNITS) simgrid_units_main.c
232 testall_LDADD=libgras.la
233 TESTS=testall
234
235 EXTRA_DIST+=$(testall_SOURCES)
236
237 if MAINTAINER_MODE
238 cunit_unit.c: xbt/cunit.c
239         @top_srcdir@/tools/sg_unit_extractor.pl $^
240 ex_unit.c: xbt/ex.c
241         @top_srcdir@/tools/sg_unit_extractor.pl $^
242 dynar_unit.c: xbt/dynar.c
243         @top_srcdir@/tools/sg_unit_extractor.pl $^
244 dict_unit.c: xbt/dict.c
245         @top_srcdir@/tools/sg_unit_extractor.pl $^
246 set_unit.c: xbt/set.c
247         @top_srcdir@/tools/sg_unit_extractor.pl $^
248 swag_unit.c: xbt/swag.c
249         @top_srcdir@/tools/sg_unit_extractor.pl $^
250 config_unit.c: xbt/config.c
251         @top_srcdir@/tools/sg_unit_extractor.pl $^
252
253 simgrid_units_main.c: $(TEST_UNITS)
254         @top_srcdir@/tools/sg_unit_extractor.pl xbt/cunit.c
255
256 clean-units:
257         rm -f simgrid_units_main.c *_unit.c
258
259 else
260
261 $(TEST_UNITS) simgrid_units_main.c clean-units: 
262         @echo "ERROR: Test units not generated."
263         @echo "ERROR: If you are using a CVS checkout, configure with the --enable-maintainer-mode flag"
264         @echo "ERROR: If not, please report the bug to the simgrid-devel mailing list."
265         @exit 1
266
267 endif
268
269 ###
270 ### Regenerate what needs to with flex & flexml
271 ###
272
273
274 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
275         set -e;@LEX@ -o$@ -Pgras_ddt_parse_ --noline $^
276
277 if MAINTAINER_MODE
278 surf/surfxml.c: surf/surfxml.l
279         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Psurf_parse_ --noline $^
280 xbt/graphxml.c: xbt/graphxml.l
281         set -e;mkdir -p `dirname $@`; @LEX@ -o$@ -Pxbt_graph_parse_ --noline $^
282
283 if HAVE_FLEXML
284 surf/surfxml.l: $(srcdir)/surf/surfxml.dtd
285         set -e; mkdir -p surf; flexml -b 1000000 -P surfxml --sysid=surfxml.dtd -S $@ -L $^
286 $(top_srcdir)/include/surf/surfxml.h: $(srcdir)/surf/surfxml.dtd
287         set -e;                flexml            -P surfxml --sysid=surfxml.dtd -H $@ -L $^
288
289 xbt/graphxml.l: $(srcdir)/xbt/graphxml.dtd
290         set -e; flexml -b 1000000 -P graphxml --sysid=graphxml.dtd -S $@ -L $^
291 $(top_srcdir)/include/xbt/graphxml.h: $(srcdir)/xbt/graphxml.dtd
292         set -e; flexml            -P graphxml --sysid=graphxml.dtd -H $@ -L $^
293 else
294
295 $(top_srcdir)/include/surf/surfxml.h surf/surfxml.l: $(top_srcdir)/src/surf/surfxml.dtd
296         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
297         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
298         @echo "ERROR:   touch include/surf/surfxml.h src/surf/surfxml.l"
299         @exit 1
300 $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graphxml.dtd
301         @echo "ERROR: src/xbt/graphxml.dtd was modified, but the flexml program was not detected"
302         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
303         @echo "ERROR:   touch include/xbt/graphxml.h src/xbt/graphxml.l"
304         @exit 1
305 endif
306 endif
307 endif
308
309 ###
310 ### Declare the library content
311 ###
312
313 libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC) $(AMOK_SRC)
314 libgras_la_LDFLAGS = -no-undefined $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
315
316 libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC) $(AMOK_SRC)
317 libsimgrid_la_LDFLAGS = -no-undefined $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
318
319
320
321 include $(top_srcdir)/acmacro/dist-files.mk