1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2026-01-14 00:22:15 +03:00
Files
libxml2/python/tests/Makefile.am
Daniel Veillard 33caa0b830 started adding SAX interfaces added a basic SAX test Daniel
* python/TODO python/libxml.c: started adding SAX interfaces
* python/tests/Makefile.am python/tests/pushSAX.py: added a basic
  SAX test
Daniel
2002-02-04 14:07:26 +00:00

37 lines
672 B
Makefile

EXAMPLE_DIR = $(prefix)/share/doc/libxml2-python-$(LIBXML_VERSION)/examples
TESTS= \
build.py \
tst.py \
tstxpath.py \
xpathext.py \
push.py \
pushSAX.py \
error.py \
validate.py \
xpath.py
XMLS= \
tst.xml \
valid.xml \
invalid.xml
EXTRA_DIST = $(TESTS) $(XMLS)
if WITH_PYTHON
tests: $(TESTS)
-@(PYTHONPATH=".." ; export PYTHONPATH; \
for test in $(TESTS) ; do echo "-- $$test" ; $(PYTHON) $$test ; done)
else
tests:
endif
clean:
rm -f *.pyc core
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(EXAMPLE_DIR)
-(for test in $(TESTS) $(XMLS); \
do @INSTALL@ -m 0644 $$test $(DESTDIR)$(EXAMPLE_DIR) ; done)