Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bandwidth.c -> Bandwidth/
[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 \
17           @CFLAGS_SimGrid@
18 EXTRA_DIST= \
19         \
20         xbt/dict_private.h \
21         \
22         gras/Transport/transport_interface.h \
23         gras/Virtu/virtu_interface.h \
24         gras/Virtu/virtu_rl.h \
25         gras/Virtu/virtu_sg.h \
26         gras/DataDesc/ddt_parse.yy.l gras/DataDesc/ddt_parse.yy.c
27
28 #        gras_private.h
29
30 #LIBRARY_VERSION= 0:0:0
31 #                 | | |
32 #          +------+ | +---+
33 #          |        |     |
34 #       current:revision:age
35 #          |        |     |
36 #          |        |     +- Increment if interfaces have been added
37 #          |        |        Set to zero if interfaces have been removed or
38 #          |        |        changed
39 #          |        +- Increment if source code has changed
40 #          |           Set to zero if current is incremented
41 #          +- Increment if interfaces have been added, removed or changed
42
43 VERSION_INFO= -release 20040722 -version-info 0:0:0
44 # from `info libtool "Updating version info"` 
45 # and  `info libtool "Release numbers"` 
46 #
47 # A) For stable library (interface wise), you should use --version-info:
48 #
49 # - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
50 # - Do not update it before public release (keep numbers small)
51 #
52 # ----------------------------------------------------------------------+
53 # +   Interface     |  code of existing  | Interface | New version info |
54 # | removal/change? | interface changed? | addition? |                  |
55 # +-----------------+--------------------+-----------+------------------+
56 # |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
57 # |      no         |        yes         |    yes    |  C   : R++ : A++ |
58 # |      no         |        yes         |    no     |  C   : R++ : A   |
59 # |      no         |        no          |    yes    |  C   : R   : A++ |
60 # |      no         |        no          |    no     |  C   : R   : A   |
61 # +-----------------+--------------------+-----------+------------------+
62 #
63 # B) For rapidely changing library, you should go for the -release flag
64 #
65 #  It modifies the library name, and you thus cannot say that a library
66 #   using this trick is ready for a "stable" release (say, in Debian).
67
68 if HAVE_SG
69  lib_LTLIBRARIES= libgrasrl.la libgrassg.la
70 else
71  lib_LTLIBRARIES= libgrasrl.la
72 endif
73
74
75 COMMON_S=\
76   \
77   xbt_modinter.h    gras_modinter.h                                            \
78   \
79   xbt/sysdep.c                                                                 \
80   xbt/log.c         xbt/log_default_appender.c   xbt/error.c                 \
81   xbt/dynar.c                                                                  \
82   xbt/dict.c        xbt/dict_elm.c               xbt/dict_cursor.c           \
83   xbt/set.c                                                                    \
84   xbt/module.c                                                                 \
85   xbt/config.c                                                                 \
86   \
87   \
88   gras/Transport/transport.c          gras/Transport/transport_private.h   gras/Transport/transport_plugin_buf.c  \
89   \
90   gras/DataDesc/ddt_create.c          \
91   gras/DataDesc/ddt_convert.c         gras/DataDesc/ddt_exchange.c     \
92   gras/DataDesc/cbps.c                gras/DataDesc/datadesc.c         \
93   gras/DataDesc/datadesc_interface.h  gras/DataDesc/datadesc_private.h \
94   gras/DataDesc/ddt_parse.c           gras/DataDesc/ddt_parse.yy.c         gras/DataDesc/ddt_parse.yy.h \
95   \
96   gras/Msg/msg.c                      gras/Msg/msg_interface.h             gras/Msg/msg_private.h \
97   \
98   gras/Virtu/process.c
99
100 gras/DataDesc/ddt_parse.yy.c: gras/DataDesc/ddt_parse.yy.l
101         @LEX@ -o$@ -Pgras_ddt_parse_ $^
102
103 libgrasrl_la_SOURCES= $(COMMON_S) \
104   gras/Transport/rl_transport.c  gras/Transport/transport_plugin_tcp.c  gras/Transport/transport_plugin_file.c      \
105   \
106   gras/Virtu/rl_process.c        gras/Virtu/rl_time.c                   gras/Virtu/rl_conditional.c
107 libgrasrl_la_LDFLAGS = $(VERSION_INFO)
108
109 if HAVE_SG
110   libgrassg_la_SOURCES= $(COMMON_S) \
111     gras/Transport/sg_transport.c  gras/Transport/transport_plugin_sg.c             \
112     \
113     gras/Virtu/sg_process.c        gras/Virtu/sg_time.c                 gras/Virtu/sg_conditional.c
114   libgrassg_la_LDFLAGS = $(VERSION_INFO)
115 endif