2015-04-14 05:35:36 -04:00
|
|
|
## TAME Makefile
|
|
|
|
#
|
2018-02-01 13:11:51 -05:00
|
|
|
# Copyright (C) 2015 R-T Specialty, LLC.
|
2015-04-14 05:35:36 -04:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
2018-02-23 12:24:14 -05:00
|
|
|
SUBDIRS = doc progtest
|
2015-04-14 05:35:36 -04:00
|
|
|
|
2015-07-09 17:00:19 -04:00
|
|
|
path_src = src
|
|
|
|
path_test = test
|
2018-10-02 13:52:32 -04:00
|
|
|
path_aux = build-aux
|
2015-04-14 05:35:36 -04:00
|
|
|
|
2015-07-09 17:00:19 -04:00
|
|
|
# all source files will be run through hoxsl; see `applies' target
|
2016-08-24 09:43:05 -04:00
|
|
|
apply_src := $(shell find "$(path_src)" "$(path_test)" \
|
|
|
|
-name '*.xsl' \
|
|
|
|
-a \! -path "$(path_src)"/current/\* )
|
2015-07-09 17:00:19 -04:00
|
|
|
apply_dest := $(apply_src:%.xsl=%.xsl.apply)
|
|
|
|
|
|
|
|
# needed by test runner
|
|
|
|
export SAXON_CP
|
|
|
|
|
|
|
|
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
|
2018-02-23 10:40:00 -05:00
|
|
|
.PHONY: check test texis applies FORCE
|
2015-07-09 17:00:19 -04:00
|
|
|
|
2018-02-23 12:24:14 -05:00
|
|
|
.DEFAULT_GOAL = all-nodoc
|
2018-02-23 10:40:00 -05:00
|
|
|
|
2018-02-23 12:24:14 -05:00
|
|
|
all-nodoc: applies progtest
|
2015-04-14 05:35:36 -04:00
|
|
|
|
2015-07-09 17:00:19 -04:00
|
|
|
# the "applies" are hoxsl-generated stylesheets containing definitions to
|
|
|
|
# permit partial function application
|
|
|
|
applies: $(apply_dest)
|
|
|
|
%.apply: %
|
|
|
|
$(JAVA) -jar "$(SAXON_CP)" \
|
2016-07-05 09:44:11 -04:00
|
|
|
-xsl:"$(HOXSL)/src/transform/apply-gen.xsl" \
|
2015-07-09 17:00:19 -04:00
|
|
|
"$<" > "$@"
|
|
|
|
|
2018-02-23 12:24:14 -05:00
|
|
|
test: check
|
|
|
|
check: | applies
|
2018-10-02 13:52:32 -04:00
|
|
|
for test in $(path_aux)/test/test-*; do ./$$test || exit 1; done
|
2018-02-23 12:24:14 -05:00
|
|
|
$(path_test)/runner
|
|
|
|
|
2018-02-23 10:40:00 -05:00
|
|
|
progtest: FORCE
|
|
|
|
$(MAKE) -C progtest
|
|
|
|
|
2015-07-09 17:00:19 -04:00
|
|
|
clean-local:
|
|
|
|
$(RM) $(apply_dest)
|