arabica/tests/Makefile.am
2007-07-19 17:43:13 +00:00

16 lines
228 B
Makefile

SUBDIRS = SAX Utils
if WANT_DOM
SUBDIRS += DOM
endif
if WANT_XPATH
SUBDIRS += XPath XSLT
endif
install:
echo "Nothing to install here"
test:
@for p in $(SUBDIRS); do \
cd $$p && make test; \
cd ..; \
done