arabica/tests/Makefile.am

17 lines
221 B
Text
Raw Normal View History

SUBDIRS =
if WANT_DOM
SUBDIRS += DOM SAX2DOM
endif
if WANT_XPATH
SUBDIRS += XPath
endif
2006-09-12 21:21:48 +00:00
install:
echo "Nothing to install here"
2006-10-11 22:51:04 +00:00
test:
@for p in $(SUBDIRS); do \
cd $$p && make test; \
cd ..; \
done