diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-23 10:40:00 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-23 10:40:00 -0500 |
commit | d1aa5f5704a3298a7bb6ce3636d92c00f0acf8fe (patch) | |
tree | fe0ec6caec0a99d60a2ec291589b9dc04dd95ea0 /Makefile.am | |
parent | 76795d1c89f2c12b303abaecfff6d2d658e277c8 (diff) | |
download | tame-d1aa5f5704a3298a7bb6ce3636d92c00f0acf8fe.tar.gz tame-d1aa5f5704a3298a7bb6ce3636d92c00f0acf8fe.tar.bz2 tame-d1aa5f5704a3298a7bb6ce3636d92c00f0acf8fe.zip |
progtest/Makefile: Build tame-progtest.js as default targetv2.9.12
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) |