1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-11-06 23:49:25 +03:00

Preparing for a not too distant alpha release:

- Makefile.am libxslt.spec.in tests/REC1/Makefile.am
  tests/REC2/Makefile.am: updated the makefiles and spec files to
  add tests, and the FEATURES file to the RPM
Daniel
This commit is contained in:
Daniel Veillard
2001-01-23 14:00:42 +00:00
parent cad80ff875
commit 583e780787
5 changed files with 20 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
Tue Jan 23 14:58:32 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* Makefile.am libxslt.spec.in tests/REC1/Makefile.am
tests/REC2/Makefile.am: updated the makefiles and spec files to
add tests, and the FEATURES file to the RPM
Mon Jan 22 23:35:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Mon Jan 22 23:35:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* Makefile.am libxslt.spec.in libxslt/Makefile.am tests/Makefile.am: * Makefile.am libxslt.spec.in libxslt/Makefile.am tests/Makefile.am:

View File

@@ -28,4 +28,9 @@ xsltConf.sh: xsltConf.sh.in Makefile
test tests: test tests:
@(cd tests ; make test) @(cd tests ; make test)
cleantar:
@(rm -f libxslt*.tar.gz)
rpm: cleantar distcheck
rpm -ta libxslt*.tar.gz

View File

@@ -81,7 +81,7 @@ rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-, root, root) %defattr(-, root, root)
%doc AUTHORS ChangeLog NEWS README COPYING COPYING.LIB TODO %doc AUTHORS ChangeLog NEWS README COPYING COPYING.LIB TODO FEATURES
%{prefix}/lib/lib*.so.* %{prefix}/lib/lib*.so.*
%{prefix}/bin/xsltproc %{prefix}/bin/xsltproc

View File

@@ -3,6 +3,10 @@
$(top_builddir)/libxslt/xsltproc: $(top_builddir)/libxslt/xsltproc:
@(cd ../../libxslt ; make xsltproc) @(cd ../../libxslt ; make xsltproc)
EXTRA_DIST = doc.xsl doc.xml result.xml
all: test
test tests: $(top_builddir)/libxslt/xsltproc test tests: $(top_builddir)/libxslt/xsltproc
@(rm -f .memdump ; touch .memdump) @(rm -f .memdump ; touch .memdump)
@($(top_builddir)/libxslt/xsltproc doc.xsl doc.xml > doc.res ; \ @($(top_builddir)/libxslt/xsltproc doc.xsl doc.xml > doc.res ; \
@@ -10,4 +14,3 @@ test tests: $(top_builddir)/libxslt/xsltproc
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
rm -f doc.res) rm -f doc.res)

View File

@@ -3,6 +3,10 @@
$(top_builddir)/libxslt/xsltproc: $(top_builddir)/libxslt/xsltproc:
@(cd ../../libxslt ; make xsltproc) @(cd ../../libxslt ; make xsltproc)
EXTRA_DIST = data.xml vrml.xsl vrml.xml svg.xsl svg.xml html.xsl html.xml
all: test
test tests: $(top_builddir)/libxslt/xsltproc test tests: $(top_builddir)/libxslt/xsltproc
@(rm -f .memdump ; touch .memdump) @(rm -f .memdump ; touch .memdump)
@($(top_builddir)/libxslt/xsltproc vrml.xsl data.xml > vrml.res ; \ @($(top_builddir)/libxslt/xsltproc vrml.xsl data.xml > vrml.res ; \
@@ -18,4 +22,3 @@ test tests: $(top_builddir)/libxslt/xsltproc
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
rm -f html.res) rm -f html.res)