summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/minidocument/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-04-11 21:15:04 +0000
committerKarl Berry <karl@freefriends.org>2017-04-11 21:15:04 +0000
commit788d56ac87017f66b122ea36502e185497f5b6aa (patch)
treeb7150767e9ba2bab30d9eae4368d58f8d035d41b /Master/texmf-dist/doc/latex/minidocument/Makefile
parentfe42f14592a869d9eb04e6bedbf28054c7c2559d (diff)
minidocument (11apr17)
git-svn-id: svn://tug.org/texlive/trunk@43752 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/minidocument/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/minidocument/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/minidocument/Makefile b/Master/texmf-dist/doc/latex/minidocument/Makefile
new file mode 100644
index 00000000000..7ed82aab4ff
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/minidocument/Makefile
@@ -0,0 +1,33 @@
+
+PACKAGE := minidocument
+
+TEXMFDIST:=$(shell kpsewhich -var-value TEXMFDIST)
+
+all: sty doc
+
+sty: $(PACKAGE).sty
+$(PACKAGE).sty: $(PACKAGE).dtx $(PACKAGE).ins
+ pdflatex ${PACKAGE}.ins
+
+doc: $(PACKAGE).pdf
+$(PACKAGE).pdf: $(PACKAGE).dtx
+ pdflatex ${PACKAGE}.dtx
+ makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx
+ makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo
+ pdflatex ${PACKAGE}.dtx
+ pdflatex ${PACKAGE}.dtx
+
+install: $(PACKAGE).dtx $(PACKAGE).ins $(PACKAGE).sty README $(PACKAGE).pdf
+ install -m 755 -d $(TEXMFDIST)/source/latex/$(PACKAGE)
+ install -m 644 -t $(TEXMFDIST)/source/latex/$(PACKAGE) $(PACKAGE).dtx
+ install -m 644 -t $(TEXMFDIST)/source/latex/$(PACKAGE) $(PACKAGE).ins
+ install -m 755 -d $(TEXMFDIST)/tex/latex/$(PACKAGE)
+ install -m 644 -t $(TEXMFDIST)/tex/latex/$(PACKAGE) $(PACKAGE).sty
+ install -m 755 -d $(TEXMFDIST)/doc/latex/$(PACKAGE)
+ install -m 644 -t $(TEXMFDIST)/doc/latex/$(PACKAGE) README
+ install -m 644 -t $(TEXMFDIST)/doc/latex/$(PACKAGE) $(PACKAGE).pdf
+
+dist: $(PACKAGE).tar.gz
+$(PACKAGE).tar.gz: Makefile README $(PACKAGE).dtx $(PACKAGE).ins $(PACKAGE).pdf
+ tar -cjf $@ --transform "s#^#$(PACKAGE)/#" $^
+