diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-07-15 18:30:53 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-07-15 18:30:53 +0000 |
commit | a476e34b2eaebfcd05effe37130b993222c7fac7 (patch) | |
tree | c566a77f825b36afa7414b7720271f73bfc506c8 /tests/REC | |
parent | fbfb6cde74e8fe906f69f12f6a82a665b9f3ed14 (diff) | |
download | libxslt-a476e34b2eaebfcd05effe37130b993222c7fac7.tar.gz libxslt-a476e34b2eaebfcd05effe37130b993222c7fac7.tar.bz2 libxslt-a476e34b2eaebfcd05effe37130b993222c7fac7.zip |
Integrating EXSLT and cleanup:
* Makefile.am configure.in libexslt/Makefile.am:
Integration of libexslt in the build system
* libxslt/Makefile.am libxslt/xsltproc.c libxslt/xsltutils.c
xsltproc/Makefile.am xsltproc/xsltproc.c:
Moved xsltproc to a separate directory, linked it to libexslt,
and added exslt version reports to -V
* tests/*/Makefile.am: updated the path to xsltproc
* libexslt/common.c libexslt/exslt.h libexslt/exsltconfig.h.in
libexslt/functions.c libexslt/math.c libexslt/sets.c: added
versionning informations, some cleanup, and added documentation
to a couple of exported functions
Daniel
Diffstat (limited to 'tests/REC')
-rw-r--r-- | tests/REC/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/REC/Makefile.am b/tests/REC/Makefile.am index fa396a23..eebd41e0 100644 --- a/tests/REC/Makefile.am +++ b/tests/REC/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -$(top_builddir)/libxslt/xsltproc: +$(top_builddir)/xsltproc/xsltproc: @(cd ../../libxslt ; make xsltproc) EXTRA_DIST = \ @@ -71,13 +71,13 @@ EXTRA_DIST = \ all: test -test tests: $(top_builddir)/libxslt/xsltproc +test tests: $(top_builddir)/xsltproc/xsltproc @(echo > .memdump) @(for i in $(srcdir)/*.xsl ; do \ name=`basename $$i .xsl` ; \ if [ ! -f $(srcdir)/$$name.xml ] ; then continue ; fi ; \ echo $$name.xml ; \ - $(top_builddir)/libxslt/xsltproc $(srcdir)/$$name.xsl $(srcdir)/$$name.xml > $$name.res;\ + $(top_builddir)/xsltproc/xsltproc $(srcdir)/$$name.xsl $(srcdir)/$$name.xml > $$name.res;\ if [ ! -f $(srcdir)/$$name.out ] ; then cp $$name.res $(srcdir)/$$name.out ; \ else if [ ! -s $$name.res ] ; then echo "Fatal error, no $$name.res\n" ; \ else diff $(srcdir)/$$name.out $$name.res ; fi ; fi; \ @@ -87,7 +87,7 @@ test tests: $(top_builddir)/libxslt/xsltproc @(for i in $(srcdir)/stand*.xml ; do \ name=`basename $$i .xml` ; \ echo $$name.xml ; \ - $(top_builddir)/libxslt/xsltproc $(srcdir)/$$name.xml > $$name.res;\ + $(top_builddir)/xsltproc/xsltproc $(srcdir)/$$name.xml > $$name.res;\ if [ ! -f $(srcdir)/$$name.stand.out ] ; then cp $$name.res $(srcdir)/$$name.stand.out ; \ else if [ ! -s $$name.res ] ; then echo "Fatal error, no $$name.res\n" ; \ else diff $(srcdir)/$$name.stand.out $$name.res ; fi ; fi; \ |