summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/msg/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/msg/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/msg/Makefile33
1 files changed, 20 insertions, 13 deletions
diff --git a/Master/texmf-dist/source/latex/msg/Makefile b/Master/texmf-dist/source/latex/msg/Makefile
index 60303250f35..a4f788ad8a8 100644
--- a/Master/texmf-dist/source/latex/msg/Makefile
+++ b/Master/texmf-dist/source/latex/msg/Makefile
@@ -1,25 +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"
+# new values via the command line: make TL LATEXDIR="xxxxx" ...
LATEXDIR=./base
DOCDIR=./doc
TESTSDIR=./tests
-TL:
+TL:
@echo Installation of the "msg" package for the TeX Live
latex msg.ins
- mkdir ${LATEXDIR}
- mkdir ${DOCDIR}
- mkdir ${TESTSDIR}
- mv *.sty ${LATEXDIR}/
- mv *-msg.tex ${LATEXDIR}/
- mv *.pdf ${DOCDIR}
- mv README ${DOCDIR}
- mv msgguide.tex ${DOCDIR}
- mv CHANGES ${DOCDIR}
- mv msgtest.tex ${TESTSDIR}/
+ 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