# 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. ##############################################################