Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
No instruction before the last variable declaration with old gcc
[simgrid.git] / src / Makefile.am
1 SUBDIRS= . amok
2
3 AM_CFLAGS= -g
4 #AM_CFLAGS= -DNDEBUG 
5
6 # -DNLOG   cuts absolutely all logs at compilation time.
7 # -DNDEBUG cuts asserts and logs at "trace" and "debug" levels.
8
9 # -g -ffast-math -funroll-loops -O3 -fno-strict-aliasing
10 # Those should be added by configure when using gcc
11 # fast-math is nasty when using IEEE floating point semantic
12 # strict-aliasing breaks my type-punning bad habit.
13
14
15 MAINTAINERCLEANFILES=Makefile.in
16 INCLUDES= -I$(top_srcdir)/include -I$(top_srcdir)/src/include 
17 EXTRA_DIST= \
18         \
19         portable.h \
20         \
21         xbt/dynar_private.h \
22         xbt/dict_private.h \
23         xbt/heap_private.h \
24         xbt/fifo_private.h \
25         xbt/context_private.h xbt/context_win32.h xbt/context_win32.c\
26         \
27         surf/maxmin_private.h \
28         surf/trace_mgr_private.h \
29         surf/surf_private.h \
30         surf/cpu_private.h \
31         surf/workstation_private.h \
32         surf/surf_timer_private.h \
33         surf/surf_parse.c \
34         surf/surfxml.l \
35         surf/surfxml.c \
36         surf/surfxml.dtd \
37         surf/network_private.h \
38         surf/network_dassf_private.h \
39         surf/workstation_KCCFLN05_private.h \
40         \
41         include/surf/maxmin.h \
42         include/surf/trace_mgr.h \
43         include/surf/surf.h \
44         include/surf/surf_parse.h \
45         \
46         include/xbt/xbt_portability.h \
47         include/xbt/context.h \
48         \
49         msg/private.h \
50         \
51         gras/Transport/transport_interface.h \
52         gras/Virtu/virtu_interface.h          gras/Virtu/virtu_private.h\
53         gras/Virtu/virtu_rl.h                 gras/Virtu/virtu_sg.h \
54         gras/DataDesc/ddt_parse.yy.l          gras/DataDesc/ddt_parse.yy.c
55
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
99 COMMON_SRC=\
100   \
101   xbt_modinter.h    gras_modinter.h                                          \
102   \
103   xbt/sysdep.c                                                               \
104   xbt/log.c         xbt/log_default_appender.c   xbt/error.c                 \
105   xbt/dynar.c                                                                \
106   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
107   xbt/dict_multi.c                                                           \
108   xbt/heap.c                                                                 \
109   xbt/fifo.c                                                                 \
110   xbt/swag.c                                                                 \
111   xbt/set.c                                                                  \
112   xbt/module.c                                                               \
113   xbt/config.c                                                               \
114   \
115   gras/gras.c \
116   \
117   gras/Transport/transport.c          gras/Transport/transport_private.h   gras/Transport/transport_plugin_buf.c  \
118   \
119   gras/DataDesc/ddt_create.c          \
120   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
121   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
122   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
123   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h \
124   \
125   gras/Msg/msg.c                      gras/Msg/timer.c                 \
126   gras/Msg/msg_interface.h            gras/Msg/msg_private.h           \
127   \
128   gras/Virtu/process.c
129
130 RL_SRC= \
131   gras/Transport/rl_transport.c  gras/Transport/transport_plugin_tcp.c  gras/Transport/transport_plugin_file.c  \
132   \
133   gras/Virtu/rl_emul.c \
134   gras/Virtu/rl_process.c        gras/Virtu/rl_time.c \
135   gras/Virtu/rl_dns.c
136
137 SG_SRC=  \
138   xbt/context.c                                                                \
139   \
140   surf/maxmin.c                                                              \
141   surf/trace_mgr.c                                                           \
142   surf/surf.c                                                                \
143   surf/surf_parse.c                                                          \
144   surf/cpu.c   surf/network.c   surf/workstation.c                           \
145   surf/surf_timer.c                                                               \
146   surf/network_dassf.c                                                       \
147   surf/workstation_KCCFLN05.c  \
148   include/surf/surfxml.h \
149   \
150   msg/task.c msg/host.c msg/m_process.c msg/gos.c \
151   msg/global.c msg/environment.c msg/deployment.c  \
152   \
153   gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c             \
154   \
155   gras/Virtu/sg_emul.c \
156   gras/Virtu/sg_process.c        gras/Virtu/sg_time.c     \
157   gras/Virtu/sg_dns.c
158
159 BUILT_SOURCES=include/surf/surfxml.h surf/surfxml.c \
160               gras/DataDesc/ddt_parse.yy.c
161
162 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
163         @LEX@ -o$@ -Pgras_ddt_parse_ $^
164
165 if MAINTAINER_MODE
166 surf/surfxml.c: surf/surfxml.l
167         @LEX@ -o$@ -Psurf_parse_ $^
168
169 if HAVE_FLEXML
170 surf/surfxml.l: surf/surfxml.dtd
171         set -e; cd surf; flexml -b 1000000 -S -L surfxml.dtd ; \
172         mv surfxml.l surfxml.l.bak ; \
173         sed 's/surfxml\.h/surf\/surfxml\.h/g' surfxml.l.bak > surfxml.l
174 include/surf/surfxml.h: surf/surfxml.dtd
175         cd include/surf; flexml -H -L ../../surf/surfxml.dtd
176 else
177
178 include/surf/surfxml.h surf/surfxml.l: surf/surfxml.dtd
179         @echo "ERROR: src/surf/surfxml.dtd was modified, but the flexml program was not detected"
180         @echo "ERROR: Please install it, or if you didn't modify this file, try this:"
181         @echo "ERROR:   touch src/include/surf/surfxml.h src/surf/surfxml.l"
182         @exit 1
183 endif
184 endif
185
186 libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC)
187 libgras_la_LDFLAGS = $(VERSION_INFO) @GRAS_DEP@ -lm
188
189 libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC)
190 libsimgrid_la_LDFLAGS = $(VERSION_INFO) @SIMGRID_DEP@ -lm
191
192
193 include $(top_srcdir)/acmacro/dist-files.mk