Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Run the testing infrastructure on make check
[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/dynar_private.h \
20         xbt/dict_private.h \
21         xbt/heap_private.h \
22         xbt/fifo_private.h \
23         xbt/context_private.h xbt/context_win32.h xbt/context_win32.c\
24         \
25         surf/maxmin_private.h \
26         surf/trace_mgr_private.h \
27         surf/surf_private.h \
28         surf/cpu_private.h \
29         surf/workstation_private.h \
30         surf/surf_timer_private.h \
31         surf/surf_parse.c \
32         surf/surfxml.l \
33         surf/surfxml.c \
34         surf/surfxml.dtd \
35         surf/network_private.h \
36         surf/network_dassf_private.h \
37         surf/workstation_KCCFLN05_private.h \
38         \
39         include/surf/maxmin.h \
40         include/surf/trace_mgr.h \
41         include/surf/surf.h \
42         include/surf/surf_parse_private.h \
43         \
44         include/xbt/xbt_portability.h \
45         include/xbt/context.h \
46         \
47         msg/private.h \
48         \
49         gras/Transport/transport_interface.h \
50         gras/Virtu/virtu_interface.h          gras/Virtu/virtu_private.h\
51         gras/Virtu/virtu_rl.h                 gras/Virtu/virtu_sg.h \
52         gras/DataDesc/ddt_parse.yy.l          gras/DataDesc/ddt_parse.yy.c \
53         \
54         amok/Bandwidth/bandwidth_private.h
55
56 #        gras_private.h
57
58 #LIBRARY_VERSION= 0:0:0
59 #                 | | |
60 #          +------+ | +---+
61 #          |        |     |
62 #       current:revision:age
63 #          |        |     |
64 #          |        |     +- Increment if interfaces have been added
65 #          |        |        Set to zero if interfaces have been removed or
66 #          |        |        changed
67 #          |        +- Increment if source code has changed
68 #          |           Set to zero if current is incremented
69 #          +- Increment if interfaces have been added, removed or changed
70
71 VERSION_INFO= -release 20050627 -version-info 0:0:0
72 # from `info libtool "Updating version info"` 
73 # and  `info libtool "Release numbers"` 
74 #
75 # A) For stable library (interface wise), you should use --version-info:
76 #
77 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
78 # - Do not update it before public release (keep numbers small)
79 #
80 # ----------------------------------------------------------------------+
81 # +   Interface     |  code of existing  | Interface | New version info |
82 # | removal/change? | interface changed? | addition? |                  |
83 # +-----------------+--------------------+-----------+------------------+
84 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
85 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
86 # |      no         |        yes         |    no     |  C   : R++ : A   |
87 # |      no         |        no          |    yes    |  C   : R   : A++ |
88 # |      no         |        no          |    no     |  C   : R   : A   |
89 # +-----------------+--------------------+-----------+------------------+
90 #
91 # B) For rapidely changing library, you should go for the -release flag
92 #
93 #  It modifies the library name, and you thus cannot say that a library
94 #   using this trick is ready for a "stable" release (say, in Debian).
95
96 lib_LTLIBRARIES= libsimgrid.la libgras.la
97 noinst_PROGRAMS=testall
98
99 COMMON_SRC=\
100   \
101   xbt/snprintf.c                                                             \
102   xbt/ex.c                                                                   \
103   \
104   xbt_modinter.h    gras_modinter.h                                          \
105   \
106   xbt/sysdep.c                                                               \
107   xbt/asserts.c                                                              \
108   xbt/log.c         xbt/log_default_appender.c                               \
109   xbt/dynar.c                                                                \
110   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
111   xbt/dict_multi.c                                                           \
112   xbt/heap.c                                                                 \
113   xbt/fifo.c                                                                 \
114   xbt/swag.c                                                                 \
115   xbt/set.c                                                                  \
116   xbt/module.c                                                               \
117   xbt/config.c                                                               \
118   xbt/cunit.c                                                                \
119   \
120   gras/gras.c \
121   \
122   gras/Transport/transport.c          gras/Transport/transport_private.h  \
123   \
124   gras/DataDesc/ddt_create.c          \
125   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
126   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
127   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
128   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h \
129   \
130   gras/Msg/msg.c                      gras/Msg/timer.c                 \
131   gras/Msg/msg_interface.h            gras/Msg/msg_private.h           \
132   \
133   gras/Virtu/process.c
134
135 RL_SRC= \
136   gras/Transport/rl_transport.c          \
137   gras/Transport/transport_plugin_file.c   gras/Transport/transport_plugin_tcp.c  \
138   \
139   gras/Virtu/rl_emul.c \
140   gras/Virtu/rl_process.c        gras/Virtu/rl_time.c \
141   gras/Virtu/rl_dns.c\
142   \
143   gras/Msg/rl_msg.c
144
145 SG_SRC=  \
146   xbt/context.c                                                                \
147   \
148   surf/maxmin.c                                                              \
149   surf/trace_mgr.c                                                           \
150   surf/surf.c                                                                \
151   surf/surf_parse.c                                                          \
152   surf/cpu.c   surf/network.c   surf/workstation.c                           \
153   surf/surf_timer.c                                                               \
154   surf/network_dassf.c                                                       \
155   surf/workstation_KCCFLN05.c  \
156   \
157   msg/msg_config.c \
158   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
159   msg/global.c msg/environment.c msg/deployment.c  \
160   \
161   gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c             \
162   \
163   gras/Virtu/sg_emul.c \
164   gras/Virtu/sg_process.c        gras/Virtu/sg_time.c     \
165   gras/Virtu/sg_dns.c\
166   \
167   gras/Msg/sg_msg.c
168
169 AMOK_SRC= \
170   amok/base.c \
171   amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c
172
173 ###
174 ### Testing infrastructure
175 ###
176
177 # Test files must be added both to the TEST_CFILES and TEST_UNITS because
178 # if I compute TEST_UNITS from TEST_CFILES, automake fails to note that they
179 # are generated. Sorry about that.
180
181 # If you add a test unit, you should regenerate simgrid_units_main.c from scratch:
182 # rm -f simgrid_units_main.c *_unit.c ; make testall
183
184 # Suites and tests run in the given order.
185
186 TEST_CFILES=xbt/cunit.c  xbt/ex.c          \
187             xbt/dynar.c xbt/dict.c xbt/set.c xbt/swag.c \
188             xbt/config.c
189 TEST_UNITS= cunit_unit.c ex_unit.c         \
190             dynar_unit.c dict_unit.c set_unit.c swag_unit.c \
191             config_unit.c
192
193 BUILT_SOURCES=../include/surf/surfxml.h surf/surfxml.c \
194               gras/DataDesc/ddt_parse.yy.c \
195               $(TEST_UNITS) simgrid_units_main.c
196
197 testall_SOURCES= $(TEST_UNITS) simgrid_units_main.c
198 testall_LDADD=libgras.la
199 TESTS=testall
200
201 EXTRA_DIST+=$(testall_SOURCES)
202           
203 if MAINTAINER_MODE
204 cunit_unit.c: xbt/cunit.c
205         @top_srcdir@/tools/sg_unit_extractor.pl $^
206 ex_unit.c: xbt/ex.c
207         @top_srcdir@/tools/sg_unit_extractor.pl $^
208 dynar_unit.c: xbt/dynar.c
209         @top_srcdir@/tools/sg_unit_extractor.pl $^
210 dict_unit.c: xbt/dict.c
211         @top_srcdir@/tools/sg_unit_extractor.pl $^
212 set_unit.c: xbt/set.c
213         @top_srcdir@/tools/sg_unit_extractor.pl $^
214 swag_unit.c: xbt/swag.c
215         @top_srcdir@/tools/sg_unit_extractor.pl $^
216 config_unit.c: xbt/config.c
217         @top_srcdir@/tools/sg_unit_extractor.pl $^
218
219 simgrid_units_main.c: $(TEST_UNITS)
220 endif
221
222 ###
223 ### Regenerate what needs to with flex & flexml
224 ###
225
226
227 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
228         @LEX@ -o$@ -Pgras_ddt_parse_ $^
229
230 if MAINTAINER_MODE
231 surf/surfxml.c: surf/surfxml.l
232         @LEX@ -o$@ -Psurf_parse_ $^
233
234 if HAVE_FLEXML
235 surf/surfxml.l: surf/surfxml.dtd
236         set -e; cd surf; flexml -b 1000000 -S -L surfxml.dtd
237 ../include/surf/surfxml.h: surf/surfxml.dtd
238         cd ../include/surf; flexml -H -L ../../src/surf/surfxml.dtd
239 else
240
241 ../include/surf/surfxml.h surf/surfxml.l: surf/surfxml.dtd
242         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
243         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
244         @echo "ERROR:   touch src/include/surf/surfxml.h src/surf/surfxml.l"
245         @exit 1
246 endif
247 endif
248
249 ###
250 ### Declare the library content
251 ###
252
253 libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC) $(AMOK_SRC)
254 libgras_la_LDFLAGS = $(VERSION_INFO) @GRAS_DEP@ @LD_DYNAMIC_FLAGS@ -lm 
255
256 libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC) $(AMOK_SRC)
257 libsimgrid_la_LDFLAGS = $(VERSION_INFO) @SIMGRID_DEP@ @LD_DYNAMIC_FLAGS@ -lm
258
259
260
261 include $(top_srcdir)/acmacro/dist-files.mk