Logo AND Algorithmique Numérique Distribuée

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