mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
16 lines
228 B
Makefile
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
|