all: NIST-target contrib-target examples-target coverage-target results-target

install: all commit zip

NIST-target:
	cd NIST && $(MAKE)

examples-target:
	cd examples && $(MAKE)

contrib-target:
	cd contrib && $(MAKE)

coverage-target:
	cd coverage && $(MAKE)

results-target:
	cd results && $(MAKE)

commit:
	cvs commit -m "Updated from top-level makefile"

zip: all
	cd .. && zip -r XSL-TestSuite.zip TestSuite >/dev/null
	cd .. && zip -r XSL-TS-NIST.zip TestSuite/NIST >/dev/null 
	cd .. && zip -r XSL-TS-contrib.zip TestSuite/contrib >/dev/null 
	cd .. && zip -r XSL-TS-examples.zip TestSuite/examples >/dev/null 
