2015-04-16 13:21:22 -04:00
|
|
|
# hoxsl manual Makefile
|
|
|
|
#
|
|
|
|
# Responsible for building the project documentation.
|
|
|
|
#
|
2018-02-01 13:11:51 -05:00
|
|
|
# Copyright (C) 2015 R-T Specialty, LLC.
|
2015-04-16 13:21:22 -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/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
path_src := ../src
|
|
|
|
path_tools := ../tools
|
|
|
|
|
2016-08-24 09:43:05 -04:00
|
|
|
stylesheets := $(shell find "$(path_src)" \
|
|
|
|
-name '*.xsl' \
|
|
|
|
-a \! -path "$(path_src)"/current/\* )
|
2015-04-16 13:21:22 -04:00
|
|
|
stexi := $(stylesheets:.xsl=.texi)
|
|
|
|
|
2017-07-18 15:31:35 -04:00
|
|
|
info_TEXINFOS = tame.texi
|
2019-01-30 11:25:54 -05:00
|
|
|
tame_TEXINFOS = usage.texi concept.texi preproc.texi license.texi \
|
|
|
|
config.texi macros.texi $(stexi) tame.css
|
2015-04-16 13:21:22 -04:00
|
|
|
|
2018-09-12 16:49:53 -04:00
|
|
|
MAKEINFOHTML=$(MAKEINFO) --html --css-include tame.css
|
2015-04-16 13:21:22 -04:00
|
|
|
|
|
|
|
xsltexis: $(stexi)
|
|
|
|
%.texi: %.xsl
|
|
|
|
$(JAVA) -jar "$(SAXON_CP)" \
|
|
|
|
-xsl:"$(path_tools)/literate-xsl/src/texinfo.xsl" \
|
|
|
|
"$<" > "$@"
|
|
|
|
|
2015-04-16 13:34:35 -04:00
|
|
|
# Privacy warning: if scripts are enabled, then you are subject to the
|
|
|
|
# normal tracking risks of loading external scripts. If this is from your
|
|
|
|
# own domain or local filesystem, then you may be leaking personal
|
|
|
|
# information.
|
|
|
|
html-local:
|
|
|
|
find tame.html/ -name '*.html' -type f \
|
|
|
|
| xargs sed -i \
|
|
|
|
's#\(<script.*\)\?</body>#<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></body>#'
|
|
|
|
|
2015-04-16 13:21:22 -04:00
|
|
|
clean-local:
|
|
|
|
-rm -f $(stexi)
|