X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/817ab4173d89aee92d1a981019d1c40199ef9611..26f971e8c5c6f6defe3f4166879a3701f6cce9ed:/src/gras/Makefile.am diff --git a/src/gras/Makefile.am b/src/gras/Makefile.am index 28a56a21aa..40bc8dc13d 100644 --- a/src/gras/Makefile.am +++ b/src/gras/Makefile.am @@ -1,10 +1,18 @@ SUBDIRS=. Tests -AM_CFLAGS=-p -g -finline-functions -ffast-math -funroll-loops\ - -funroll-all-loops -fexpensive-optimizations -O3 -fno-omit-frame-pointer\ - -DGRAS_LOG_STATIC_THRESHOLD=gras_log_priority_infinite -DNDEBUG +AM_CFLAGS= -DNDEBUG + +# -DNLOG cuts absolutely all logs at compilation time. +# -DNDEBUG cuts asserts and logs at "trace" and "debug" levels. + +# -g -ffast-math -funroll-loops -O3 -fno-strict-aliasing +# Those should be added by configure when using gcc +# 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@ +INCLUDES= @CFLAGS_SimGrid@ + EXTRA_DIST= ./gras_private.h \ Core/dict_private.h \ Transport/transport_interface.h \ @@ -13,6 +21,19 @@ EXTRA_DIST= ./gras_private.h \ Virtu/virtu_sg.h \ DataDesc/ddt_parse.yy.l DataDesc/ddt_parse.yy.c +#LIBRARY_VERSION= 0:0:0 +# | | | +# +------+ | +---+ +# | | | +# current:revision:age +# | | | +# | | +- Increment if interfaces have been added +# | | Set to zero if interfaces have been removed or +# | | changed +# | +- Increment if source code has changed +# | Set to zero if current is incremented +# +- Increment if interfaces have been added, removed or changed + VERSION_INFO= -release 20040722 -version-info 0:0:0 # from `info libtool "Updating version info"` # and `info libtool "Release numbers"` @@ -44,6 +65,8 @@ else lib_LTLIBRARIES= libgrasrl.la endif +# Core/config.c + COMMON_S=\ \ Core/module.c Core/core_interface.h \ @@ -52,7 +75,6 @@ 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_plugin_buf.c \ \