blob: a4f788ad8a80ad4ecaa03b43afd001f30e7f5d84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
##############################################################
|