From: mquinson Date: Thu, 14 Apr 2005 08:30:58 +0000 (+0000) Subject: React sainly when flexml is not installed X-Git-Tag: v3.3~4141 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/94af71c0d81fa37aa96b4b7eb289db6dc2e19717?ds=sidebyside React sainly when flexml is not installed git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1213 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/Makefile.am b/src/Makefile.am index 9dd8414f0c..9defdbda9b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -160,13 +160,21 @@ if MAINTAINER_MODE surf/surfxml.c: surf/surfxml.l @LEX@ -o$@ -Psurf_parse_ $^ +if HAVE_FLEXML surf/surfxml.l: surf/surfxml.dtd set -e; cd surf; flexml -b 1000000 -S -L surfxml.dtd ; \ mv surfxml.l surfxml.l.bak ; \ sed 's/surfxml\.h/surf\/surfxml\.h/g' surfxml.l.bak > surfxml.l - include/surf/surfxml.h: surf/surfxml.dtd cd include/surf; flexml -H -L ../../surf/surfxml.dtd +else + +include/surf/surfxml.h surf/surfxml.l: surf/surfxml.dtd + @echo "ERROR: src/surf/surfxml.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/include/surf/surfxml.h src/surf/surfxml.l" + @exit 1 +endif endif libgras_la_SOURCES= $(COMMON_SRC) $(RL_SRC)