X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1a66f9e48742a7a62c7278c42e3ddd83dfe5180a..342fcbf918c2e2e7d1a9e149722362b518d0ba9b:/src/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 9f9b2615f0..a3bf0b0b76 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -66,6 +66,8 @@ EXTRA_DIST= \ \ simdag/private.h \ simdag/dax.dtd \ + simdag/dax_dtd.h \ + simdag/dax_dtd.c \ \ gras/DataDesc/ddt_parse.yy.l \ gras/DataDesc/ddt_parse.yy.h \ @@ -86,7 +88,9 @@ EXTRA_DIST= \ smpi/private.h \ smpi/smpi_coll_private.h \ smpi/smpi_mpi_dt_private.h \ - smpi/README + smpi/README \ + \ + mk_supernovae.sh #LIBRARY_VERSION= 0:0:0 # | | | @@ -262,7 +266,8 @@ JMSG_JAVA_SRC = \ java/simgrid/msg/Sem.java -SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c simdag/sd_task.c simdag/sd_workstation.c \ +SIMDAG_SRC= simdag/sd_global.c simdag/sd_link.c \ + simdag/sd_task.c simdag/sd_workstation.c \ simdag/sd_daxloader.c GRAS_COMMON_SRC= \ @@ -378,11 +383,20 @@ endif ## ## Compile the libs -CLEANFILES= +CLEANFILES=supernovae_sg.c supernovae_gras.c supernovae_smpi.c +BUILT_SOURCES= + +# Cannot let automake autocompute the content of dist from +# lib*_la_SOURCES variables since it would include supernovae files, +# which are only generated sometimes, not always. +# So, use nodist_lib*_la_SOURCES variables and add stuff to EXTRA_DIST manually + +EXTRA_DIST+=$(simgrid_sources) $(gras_sources) + if SUPERNOVAE_MODE - simgrid_fragile_sources=gras/DataDesc/ddt_parse.yy.c surf/surfxml_parse.c xbt/graphxml_parse.c simdag/sd_daxloader.c gras_fragile_sources=gras/DataDesc/ddt_parse.yy.c xbt/graphxml_parse.c +BUILT_SOURCES+=supernovae_sg.c supernovae_gras.c supernovae_smpi.c supernovae_sg.c: Makefile.am ./mk_supernovae.sh supernovae_sg.c $(filter-out $(simgrid_fragile_sources),$(simgrid_sources)) @@ -390,15 +404,15 @@ supernovae_gras.c: Makefile.am ./mk_supernovae.sh supernovae_gras.c $(filter-out $(gras_fragile_sources),$(gras_sources)) supernovae_smpi.c: Makefile.am ./mk_supernovae.sh supernovae_smpi.c $(filter-out $(smpi_fragile_sources),$(smpi_sources)) -CLEANFILES+=supernovae_sg.c supernovae_gras.c supernovae_smpi.c -libsimgrid_la_SOURCES = supernovae_sg.c $(simgrid_fragile_sources) -libgras_la_SOURCES = supernovae_gras.c $(gras_fragile_sources) +nodist_libsimgrid_la_SOURCES = supernovae_sg.c $(simgrid_fragile_sources) +nodist_libgras_la_SOURCES = supernovae_gras.c $(gras_fragile_sources) else -libsimgrid_la_SOURCES = $(simgrid_sources) -libgras_la_SOURCES=$(gras_sources) +nodist_libsimgrid_la_SOURCES = $(simgrid_sources) +nodist_libgras_la_SOURCES = $(gras_sources) endif + if GRAMINE_MODE else ### @@ -424,7 +438,7 @@ TEST_UNITS= @builddir@/cunit_unit.c @builddir@/ex_unit.c \ @builddir@/xbt_str_unit.c @builddir@/xbt_strbuff_unit.c @builddir@/xbt_sha_unit.c\ @builddir@/config_unit.c @builddir@/xbt_synchro_unit.c -BUILT_SOURCES=../include/surf/simgrid_dtd.h surf/simgrid_dtd.c \ +BUILT_SOURCES+=../include/surf/simgrid_dtd.h surf/simgrid_dtd.c \ ../include/xbt/graphxml.h xbt/graphxml.c \ simdag/dax_dtd.h simdag/dax_dtd.c \ gras/DataDesc/ddt_parse.yy.c \ @@ -523,7 +537,7 @@ $(top_srcdir)/include/xbt/graphxml.h xbt/graphxml.l: $(top_srcdir)/src/xbt/graph @echo "ERROR: Please install it, or if you didn't modify this file, try this:" @echo "ERROR: touch include/xbt/graphxml.h src/xbt/graphxml.l" @exit 1 -simdag/dax_dtd.h simdag/dax_dtd.l: simdag/dax_dtd.dtd +simdag/dax_dtd.h simdag/dax_dtd.l: simdag/dax.dtd @echo "ERROR: src/simdag/dax.dtd was modified, but the flexml program was not detected" @echo "ERROR: Please install it, or if you didn't modify this file, try this:" @echo "ERROR: touch src/simdag/dax_dtd.h src/simdag/dax_dtd.l"