summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/texlive/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-05-09 21:49:52 +0000
committerKarl Berry <karl@freefriends.org>2021-05-09 21:49:52 +0000
commita4ab0da3c5dd811a6da8df1c269607f74d5649b5 (patch)
tree1314b05d3f7c430ed8a90dbc6375f2e0726b6e57 /Master/texmf-dist/scripts/texlive/Makefile
parent5fefcba6e29705444628d35033c7fac17e401e51 (diff)
doc
git-svn-id: svn://tug.org/texlive/trunk@59152 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/texlive/Makefile')
-rw-r--r--Master/texmf-dist/scripts/texlive/Makefile19
1 files changed, 13 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/texlive/Makefile b/Master/texmf-dist/scripts/texlive/Makefile
index 2342ce96a49..a98844e2cfb 100644
--- a/Master/texmf-dist/scripts/texlive/Makefile
+++ b/Master/texmf-dist/scripts/texlive/Makefile
@@ -4,11 +4,11 @@
test_tlmgr_html = /tmp/tlmgr.html
htmldir = /home/httpd/html/texlive/doc
-test-html:
+test-tlmgr-html:
pod2html --cachedir=/tmp tlmgr.pl >$(test_tlmgr_html)
diff $(htmldir)/tlmgr.html $(test_tlmgr_html)
-install-html:
+install-tlmgr-doc:
mv $(test_tlmgr_html) $(htmldir)/tlmgr.html
# testing.
@@ -16,6 +16,9 @@ uhelp:
./updmap.pl --help
fhelp:
./fmtutil.pl --help
+test-mktexfmt:
+ ./mktexfmt -n ptex.fmt
+ rm -rf $(HOME)/.texlive2021/texmf-var/web2c/ptex/
# remake fmtutil/updmap doc from --help; see Master/tlpkg/doc/releng.txt.
# assume $W is a TL build tree.
@@ -24,10 +27,14 @@ man2html = groff -mandoc -Thtml
#
man1 = ../../doc/man/man1
#
-install:
- $(MAKE) -C $(W)/texk/texlive/tl_support xupdmap.1 xfmtutil.1
+install-updmap-doc:
+ $(MAKE) -C $(W)/texk/texlive/tl_support xupdmap.1
$(INSTALL_DATA) /tmp/xupdmap.1 $(man1)/updmap.1
- $(INSTALL_DATA) /tmp/xfmtutil.1 $(man1)/fmtutil.1
$(man2html) $(man1)/updmap.1 >$(htmldir)/updmap.html
- $(man2html) $(man1)/fmtutil.1 >$(htmldir)/fmtutil.html
$(MAKE) -C $(man1)/..
+
+install-fmtutil-doc:
+ $(MAKE) -C $(W)/texk/texlive/tl_support xfmtutil.1
+ $(INSTALL_DATA) /tmp/xfmtutil.1 $(man1)/fmtutil.1
+ $(man2html) $(man1)/fmtutil.1 >$(htmldir)/fmtutil.html
+# $(MAKE) -C $(man1)/..