summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-10-11 20:25:04 +0000
committerKarl Berry <karl@freefriends.org>2021-10-11 20:25:04 +0000
commit5aef2543fad393e3a312080775d7c2ff894f9fa6 (patch)
tree3aefaa1bc908f2651056d1010a935e27785fcaa8 /Master/texmf-dist/doc
parent84b9715766a8fdd110bad3f57d0ec53b502a404b (diff)
phfthm (11oct21)
git-svn-id: svn://tug.org/texlive/trunk@60735 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r--Master/texmf-dist/doc/latex/phfthm/Makefile10
-rw-r--r--Master/texmf-dist/doc/latex/phfthm/README.md13
-rw-r--r--Master/texmf-dist/doc/latex/phfthm/phfthm.pdfbin381267 -> 400744 bytes
-rw-r--r--Master/texmf-dist/doc/latex/phfthm/pkg.mk167
4 files changed, 11 insertions, 179 deletions
diff --git a/Master/texmf-dist/doc/latex/phfthm/Makefile b/Master/texmf-dist/doc/latex/phfthm/Makefile
deleted file mode 100644
index fa97b2d7fd9..00000000000
--- a/Master/texmf-dist/doc/latex/phfthm/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-
-PKG = phfthm
-
--include pkg.mk
-
-pkg.mk:
- ln -sf ../mkcommon/pkg.mk pkg.mk
-
-install: install_sty install_doc
-
diff --git a/Master/texmf-dist/doc/latex/phfthm/README.md b/Master/texmf-dist/doc/latex/phfthm/README.md
index 8f0aece3fee..f97a2e62d63 100644
--- a/Master/texmf-dist/doc/latex/phfthm/README.md
+++ b/Master/texmf-dist/doc/latex/phfthm/README.md
@@ -11,5 +11,14 @@ and "Proof of Theorem 4: ..."
# Documentation
-Run 'make sty' to generate the style file and 'make pdf' to generate the package
-documentation. Run 'make' or 'make help' for more info.
+Run `make sty` to generate the style file, `make pdf` to generate the package
+documentation, and `make install` to install the package in your local texmf
+tree. Run 'make' or 'make help' for more info.
+
+
+# Author and License
+
+(C) 2016 Philippe Faist, philippe.faist@bluewin.ch
+
+License: [LaTeX project public license](http://www.ctan.org/license/lppl1.3),
+version 1.3 or above
diff --git a/Master/texmf-dist/doc/latex/phfthm/phfthm.pdf b/Master/texmf-dist/doc/latex/phfthm/phfthm.pdf
index ce5c5ecce36..9a4c7af7b6a 100644
--- a/Master/texmf-dist/doc/latex/phfthm/phfthm.pdf
+++ b/Master/texmf-dist/doc/latex/phfthm/phfthm.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/phfthm/pkg.mk b/Master/texmf-dist/doc/latex/phfthm/pkg.mk
deleted file mode 100644
index 3cc121ce5ec..00000000000
--- a/Master/texmf-dist/doc/latex/phfthm/pkg.mk
+++ /dev/null
@@ -1,167 +0,0 @@
-
-#
-# Common useful definitions
-#
-LATEX = latex
-
-PDFLATEX = TEXINPUTS="$$TEXINPUTS:../phfnote" pdflatex
-PDFLATEXOPTS = -interaction=batchmode
-PDFLATEXOPTSLAST = -interaction=batchmode --synctex=1
-
-MAKEINDEX = makeindex
-
-
-#
-# Set default PREFIX. This can be overridden with 'make install PREFIX=/installation/directory'
-#
-DEFAULT_PREFIX := $(shell kpsewhich -var-value TEXMFHOME)
-PREFIX ?= $(DEFAULT_PREFIX)
-
-
-#
-# package should be set in variable PKG
-#
-PKGREADME = README.md
-
-#
-# packages may specify additional files in the distribution with this variable
-# (by default empty)
-#
-DIST_ADDITIONAL_FILES ?=
-
-
-PKGDTX = $(PKG).dtx
-PKGINS = $(PKG).ins
-PKGSTY = $(PKG).sty
-PKGPDF = $(PKG).pdf
-PKGTDSZIP = $(PKG).tds.zip
-PKGZIP = $(PKG).zip
-
-
-
-.PHONY: help sty pdf install install_sty install_doc tdszip dist clean cleanall cleansty cleanaux cleanpdf cleantdszip cleandist
-
-
-help:
- @echo "Targets for $(PKG):"
- @echo "make sty -- generate LaTeX package file $(PKG).sty"
- @echo "make pdf -- generate pdf documentation"
- @echo "make install -- install style and documentation files to TEXMF tree"
- @echo "make install PREFIX=[specify texmf directory]"
- @echo "make $(PKG).tds.zip -- create TDS.ZIP to include in CTAN upload"
- @echo "make dist -- create distribution ZIP, ready for upload to CTAN"
- @echo "make clean -- remove LaTeX auxiliary files"
- @echo "make cleansty -- remove generated style file"
- @echo "make cleanpdf -- remove generated pdf documentation"
- @echo "make cleanall -- remove all generated files, incl. distribution zip"
-
-
-clean: cleanaux
-
-cleanall: cleansty cleanaux cleanpdf cleantdszip cleandist
-
-# ------------------------------------------------
-# make sty
-# ------------------------------------------------
-
-sty: $(PKGSTY)
-
-$(PKGSTY): $(PKGINS) $(PKGDTX)
- $(LATEX) $<
-
-cleansty:
- @rm -f $(PKGSTY)
-
-# ------------------------------------------------
-# make pdf
-# ------------------------------------------------
-
-pdf: $(PKG).pdf
-
-#
-# fake index & glossary so they get a TOC entry from the beginning, and so the page
-# numbers in the index are correct.
-#
-$(PKG).aux $(PKG).idx $(PKG).glo: $(PKGDTX) $(PKGSTY)
- DTX=$< ; echo '\\begin{theindex}\\item index here \\end{theindex}' >$${DTX%.dtx}.ind
- DTX=$< ; echo '\\begin{theglossary}\\item changes here\\end{theglossary}' >$${DTX%.dtx}.gls
- $(PDFLATEX) $(PDFLATEXOPTS) $<
- $(PDFLATEX) $(PDFLATEXOPTS) $<
- $(PDFLATEX) $(PDFLATEXOPTS) $<
-
-$(PKG).ind: $(PKG).idx
- $(MAKEINDEX) -s gind.ist -o $@ $<
-
-$(PKG).gls: $(PKG).glo
- $(MAKEINDEX) -s gglo.ist -o $@ $<
-
-# final steps of making the PKG.pdf doc file. At the end, touch the ind and gls files so
-# that they don't look out-of-date (because the idx and glo files were overwritten again)
-$(PKGPDF): $(PKGDTX) $(PKG).aux $(PKG).ind $(PKG).gls
- $(PDFLATEX) $(PDFLATEXOPTS) $<
- $(PDFLATEX) $(PDFLATEXOPTS) $<
- $(PDFLATEX) $(PDFLATEXOPTSLAST) $<
- touch $(PKG).ind $(PKG).gls $(PKG).pdf
-
-
-cleanaux:
- @rm -f *.aux *.log *.toc *.glo *.gls *.ind *.idx *.ilg *.out *.bbl *.blg *.synctex.gz *.hd
-
-cleanpdf:
- @rm -f $(PKGPDF)
-
-# ------------------------------------------------
-# 'make install' partial installation targets
-# ------------------------------------------------
-
-#
-# The install target itself is defined per-package, in case packages want to install more
-# files (such as bibtex styles)
-#
-
-install_sty: $(PKGSTY)
- mkdir -p $(DESTDIR)$(PREFIX)/tex/latex/$(PKG)
- cp $(PKGSTY) $(DESTDIR)$(PREFIX)/tex/latex/$(PKG)
-
-install_doc: $(PKGPDF)
- mkdir -p $(DESTDIR)$(PREFIX)/doc/latex/$(PKG)
- cp $(PKGPDF) $(PKGREADME) $(DESTDIR)$(PREFIX)/doc/latex/$(PKG)
-
-
-
-# ------------------------------------------------
-# make tdszip
-# ------------------------------------------------
-
-TDSTMPDIR = $(CURDIR)/_install_tds_zip.make.tmp
-
-tdszip: $(PKGTDSZIP)
-
-$(PKGTDSZIP): $(PKGSTY) $(PKGPDF)
- mkdir $(TDSTMPDIR)
- $(MAKE) install PREFIX=$(TDSTMPDIR)
- cd $(TDSTMPDIR) && zip -r $(CURDIR)/$(PKGTDSZIP) *
- rm -rf $(TDSTMPDIR)
-
-cleantdszip:
- @rm -f $(PKGTDSZIP)
-
-
-# ------------------------------------------------
-# make dist
-# ------------------------------------------------
-
-DISTTMPDIR = $(CURDIR)/_install_dist_zip.make.tmp
-
-dist: $(PKGZIP)
-
-$(PKGZIP): $(PKGTDSZIP)
- rm -rf $(DISTTMPDIR)
- mkdir -p $(DISTTMPDIR)/$(PKG)
- cp $(PKGTDSZIP) $(DISTTMPDIR)
- cp $(PKGDTX) $(PKGINS) $(PKGPDF) $(PKGREADME) Makefile pkg.mk $(DIST_ADDITIONAL_FILES) $(DISTTMPDIR)/$(PKG)
- cd $(DISTTMPDIR) && zip -r $(CURDIR)/$(PKGZIP) $(PKGTDSZIP) $(PKG)
- rm -rf $(DISTTMPDIR)
-
-cleandist:
- @rm -f $(PKGZIP)