arabica/tests/Makefile.am

17 lines
228 B
Text
Raw Normal View History

2007-07-19 18:57:04 +02:00
SUBDIRS = SAX Utils
if WANT_DOM
2007-07-19 18:57:04 +02:00
SUBDIRS += DOM
endif
if WANT_XPATH
2007-07-19 18:57:04 +02:00
SUBDIRS += XPath XSLT
endif
2006-09-12 23:21:48 +02:00
install:
echo "Nothing to install here"
2006-10-12 00:51:04 +02:00
test:
@for p in $(SUBDIRS); do \
cd $$p && make test; \
cd ..; \
done