summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/msg/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/msg/Makefile
Initial commit
Diffstat (limited to 'macros/latex/contrib/msg/Makefile')
-rw-r--r--macros/latex/contrib/msg/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/macros/latex/contrib/msg/Makefile b/macros/latex/contrib/msg/Makefile
new file mode 100644
index 0000000000..a4f788ad8a
--- /dev/null
+++ b/macros/latex/contrib/msg/Makefile
@@ -0,0 +1,32 @@
+# Makefile for TeXLive preparation
+# Last mods: 2006/11/08
+#
+# Here are the default directories; you can modify them here or provide
+# new values via the command line: make TL LATEXDIR="xxxxx" ...
+
+LATEXDIR=./base
+DOCDIR=./doc
+TESTSDIR=./tests
+
+TL:
+ @echo Installation of the "msg" package for the TeX Live
+ latex msg.ins
+ mkdir -p ${LATEXDIR}
+ cp -p *.sty ${LATEXDIR}/
+ rm -f *.sty
+ cp -p *-msg.tex ${LATEXDIR}/
+ rm -f *-msg.tex
+ mkdir -p ${DOCDIR}
+ cp -p *.pdf ${DOCDIR}
+ cp -p README_msg_doc.txt ${DOCDIR}
+ rm -f README_msg_doc.txt
+ cp -p msgguide.tex ${DOCDIR}
+ cp -p CHANGES ${DOCDIR}
+ mkdir -p ${TESTSDIR}
+ cp -p msgtest.tex ${TESTSDIR}/
+ @echo End of installation of the "msg" package for TL.
+
+clean:
+ -rm msg.log
+
+############################################################## \ No newline at end of file