diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 9f2e982..290fdfe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,9 +33,11 @@ export SAXON_CP .DELETE_ON_ERROR: -.PHONY: check test texis applies +.PHONY: check test texis applies FORCE -.DEFAULT_GOAL := applies +.DEFAULT_GOAL := all + +all: applies progtest test: check check: | applies @@ -49,5 +51,8 @@ applies: $(apply_dest) -xsl:"$(HOXSL)/src/transform/apply-gen.xsl" \ "$<" > "$@" +progtest: FORCE + $(MAKE) -C progtest + clean-local: $(RM) $(apply_dest) |