summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/msg/Makefile
blob: 60303250f35170a92f5dee13ec955c455c4ca184 (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
# Makefile for TeXLive preparation

# 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 ${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}/
	@echo End of installation of the "msg" package for TL.

##############################################################