X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3d85805182365568b827d198e52c9463a946ec74..753cae90a856db7cd223182fb9fea6853fb7713c:/src/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 1b9502b831..b73f3b613a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,3 @@ -SUBDIRS= . amok - AM_CFLAGS= -g #AM_CFLAGS= -DNDEBUG @@ -18,6 +16,7 @@ EXTRA_DIST= \ \ portable.h \ \ + xbt/dynar_private.h \ xbt/dict_private.h \ xbt/heap_private.h \ xbt/fifo_private.h \ @@ -28,6 +27,7 @@ EXTRA_DIST= \ surf/surf_private.h \ surf/cpu_private.h \ surf/workstation_private.h \ + surf/surf_timer_private.h \ surf/surf_parse.c \ surf/surfxml.l \ surf/surfxml.c \ @@ -49,9 +49,10 @@ EXTRA_DIST= \ gras/Transport/transport_interface.h \ gras/Virtu/virtu_interface.h gras/Virtu/virtu_private.h\ gras/Virtu/virtu_rl.h gras/Virtu/virtu_sg.h \ - gras/DataDesc/ddt_parse.yy.l gras/DataDesc/ddt_parse.yy.c - - + gras/DataDesc/ddt_parse.yy.l gras/DataDesc/ddt_parse.yy.c \ + \ + amok/Bandwidth/bandwidth_private.h + # gras_private.h #LIBRARY_VERSION= 0:0:0 @@ -67,7 +68,7 @@ EXTRA_DIST= \ # | Set to zero if current is incremented # +- Increment if interfaces have been added, removed or changed -VERSION_INFO= -release 20050131 -version-info 0:0:0 +VERSION_INFO= -release 20050627 -version-info 0:0:0 # from `info libtool "Updating version info"` # and `info libtool "Release numbers"` # @@ -96,18 +97,19 @@ lib_LTLIBRARIES= libsimgrid.la libgras.la COMMON_SRC=\ \ - xbt_modinter.h gras_modinter.h \ + xbt_modinter.h gras_modinter.h \ \ - xbt/sysdep.c \ + xbt/sysdep.c \ xbt/log.c xbt/log_default_appender.c xbt/error.c \ - xbt/dynar.c \ + xbt/dynar.c \ xbt/dict.c xbt/dict_elm.c xbt/dict_cursor.c \ - xbt/heap.c \ - xbt/fifo.c \ - xbt/swag.c \ - xbt/set.c \ - xbt/module.c \ - xbt/config.c \ + xbt/dict_multi.c \ + xbt/heap.c \ + xbt/fifo.c \ + xbt/swag.c \ + xbt/set.c \ + xbt/module.c \ + xbt/config.c \ \ gras/gras.c \ \ @@ -139,6 +141,7 @@ SG_SRC= \ surf/surf.c \ surf/surf_parse.c \ surf/cpu.c surf/network.c surf/workstation.c \ + surf/surf_timer.c \ surf/network_dassf.c \ surf/workstation_KCCFLN05.c \ include/surf/surfxml.h \ @@ -152,6 +155,12 @@ SG_SRC= \ gras/Virtu/sg_process.c gras/Virtu/sg_time.c \ gras/Virtu/sg_dns.c +AMOK_SRC= \ + amok/base.c \ + amok/Bandwidth/bandwidth.c amok/Bandwidth/saturate.c + + + BUILT_SOURCES=include/surf/surfxml.h surf/surfxml.c \ gras/DataDesc/ddt_parse.yy.c @@ -179,10 +188,10 @@ include/surf/surfxml.h surf/surfxml.l: surf/surfxml.dtd endif endif -libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC) +libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC) $(AMOK_SRC) libgras_la_LDFLAGS = $(VERSION_INFO) @GRAS_DEP@ -lm -libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC) +libsimgrid_la_SOURCES= $(COMMON_SRC) $(SG_SRC) $(AMOK_SRC) libsimgrid_la_LDFLAGS = $(VERSION_INFO) @SIMGRID_DEP@ -lm