Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Version 0.5 (protocol not changed; ABI changed)
[simgrid.git] / src / gras / Makefile.am
index a70670f..9bbaf9f 100644 (file)
@@ -1,4 +1,13 @@
 SUBDIRS=. Tests
+AM_CFLAGS=-g -ffast-math -funroll-loops -O3 -fno-strict-aliasing 
+
+# -DNLOG -DNDEBUG
+
+# fast-math is nasty when using IEEE floating point semantic
+# strict-aliasing breaks my type-punning bad habit.
+
+
 MAINTAINERCLEANFILES=Makefile.in
 INCLUDES= -I$(top_srcdir)/src/include \
           @CFLAGS_SimGrid@
@@ -10,7 +19,30 @@ EXTRA_DIST= ./gras_private.h    \
        Virtu/virtu_sg.h \
        DataDesc/ddt_parse.yy.l DataDesc/ddt_parse.yy.c
 
-VERSION_INFO=-version-info 0:1:0
+VERSION_INFO= -release 20040722 -version-info 0:0:0
+# from `info libtool "Updating version info"` 
+# and  `info libtool "Release numbers"` 
+#
+# A) For stable library (interface wise), you should use --version-info:
+#
+# - Begin with C:R:A = 0:0:0 (ie here, VERSION_INFO= -version-info 0:0:0)
+# - Do not update it before public release (keep numbers small)
+#
+# ----------------------------------------------------------------------+
+# +   Interface     |  code of existing  | Interface | New version info |
+# | removal/change? | interface changed? | addition? |                  |
+# +-----------------+--------------------+-----------+------------------+
+# |      yes        |   must be yes ;)   |           |  C++ : 0   : 0   |
+# |      no         |        yes         |    yes    |  C   : R++ : A++ |
+# |      no         |        yes         |    no     |  C   : R++ : A   |
+# |      no         |        no          |    yes    |  C   : R   : A++ |
+# |      no         |        no          |    no     |  C   : R   : A   |
+# +-----------------+--------------------+-----------+------------------+
+#
+# B) For rapidely changing library, you should go for the -release flag
+#
+#  It modifies the library name, and you thus cannot say that a library
+#   using this trick is ready for a "stable" release (say, in Debian).
 
 if HAVE_SG
  lib_LTLIBRARIES= libgrasrl.la libgrassg.la
@@ -18,6 +50,8 @@ else
  lib_LTLIBRARIES= libgrasrl.la
 endif
 
+#  Core/config.c                               
+
 COMMON_S=\
   \
   Core/module.c      Core/core_interface.h                                      \
@@ -26,9 +60,8 @@ COMMON_S=\
   Core/dict.c        Core/dict_elm.c               Core/dict_cursor.c           \
   Core/set.c                                                                    \
   \
-  Core/config.c                               \
   \
-  Transport/transport.c          Transport/transport_private.h  \
+  Transport/transport.c          Transport/transport_private.h   Transport/transport_plugin_buf.c  \
   \
   DataDesc/ddt_create.c          \
   DataDesc/ddt_convert.c         DataDesc/ddt_exchange.c     \