summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/tpslifonts/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-08-19 22:24:49 +0000
committerKarl Berry <karl@freefriends.org>2012-08-19 22:24:49 +0000
commitb1ee70c8a339b99f2ad80faf3a97f28be20411be (patch)
tree6e6d076f2764a0e37c70d0fc509ba04a4025c6bd /Master/texmf-dist/doc/latex/tpslifonts/Makefile
parentb930041db48f2f319759f365ac4a7cb55cc116b6 (diff)
tpslifonts non-update
git-svn-id: svn://tug.org/texlive/trunk@27464 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/tpslifonts/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/tpslifonts/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tpslifonts/Makefile b/Master/texmf-dist/doc/latex/tpslifonts/Makefile
new file mode 100644
index 00000000000..625328b2520
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/tpslifonts/Makefile
@@ -0,0 +1,38 @@
+RM=rm -f
+SHELL=sh
+VERSION=0.1
+JUNKS=*.aux *.toc *.idx *.glo *.dvi *.log *.lof *.ist *.ilg *.ind *.gls *.out *.tmp *~
+
+help:
+ @echo '**********************************************'
+ @echo ' The following targets exist: '
+ @echo ' - all: All targets below '
+ @echo ' - unpack: Unpacks the tpslifonts package '
+ @echo ' - pack: Packs the package '
+ @echo ' - doc: Builds tpslifonts documentation '
+ @echo ' - clean: Remove all generate/junk files '
+ @echo '**********************************************'
+
+unpack:
+ latex tpslifonts.ins
+ @echo '**********************************************'
+ @echo ' To make tpslifonts package documentation '
+ @echo ' % make doc '
+ @echo '**********************************************'
+
+all: unpack doc
+
+doc: tpslifonts.dtx
+ latex tpslifonts.dtx
+ latex tpslifonts.dtx
+ makeindex -s gglo.ist -o tpslifonts.gls tpslifonts.glo
+ makeindex -s gind.ist -o tpslifonts.ind tpslifonts.idx
+ latex tpslifonts.dtx
+
+pack: clean
+ -(cd ..; cp -r tpslifonts tpslifonts-$(VERSION); \
+ tar cvfz tpslifonts-$(VERSION).tgz tpslifonts-$(VERSION))
+
+clean:
+ @$(RM) $(JUNKS) tpslifonts.sty
+ @echo The current directory has been cleaned up.