diff options
author | Karl Berry <karl@freefriends.org> | 2007-02-28 22:32:28 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-02-28 22:32:28 +0000 |
commit | e7d22f9c3388947b1b1e5e8c8519c9ae0684a96f (patch) | |
tree | 54fcbbab0ca8c6ff479a36810919d99ce6e9e112 /Master/texmf-dist/source/latex/listings/Makefile | |
parent | 278b41c83363bdbda2ef386ec54df1c16417a1d8 (diff) |
listings update (28feb07)
git-svn-id: svn://tug.org/texlive/trunk@4002 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/listings/Makefile')
-rw-r--r-- | Master/texmf-dist/source/latex/listings/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/listings/Makefile b/Master/texmf-dist/source/latex/listings/Makefile new file mode 100644 index 00000000000..9ecf8b6f552 --- /dev/null +++ b/Master/texmf-dist/source/latex/listings/Makefile @@ -0,0 +1,37 @@ +# This file generates files required to use the listings package. +# +# (c) 2007 Brooks Moses +# +# This file is distributed under the terms of the LaTeX Project Public +# License from CTAN archives in directory macros/latex/base/lppl.txt. +# Either version 1.3 or, at your option, any later version. + +.PHONY: listings pdf pdf-devel all + +listings: listings.sty + +pdf: listings.pdf + +pdf-devel: listings-devel.pdf + +all: listings pdf pdf-devel + + +listings.sty: listings.dtx listings.ins lstdrvrs.dtx + tex listings.ins + +listings.pdf: listings.sty + rm -f ltxdoc.cfg + pdflatex listings.dtx + makeindex -s gind.ist listings + pdflatex listings.dtx + pdflatex listings.dtx + +listings-devel.pdf: listings.sty + rm -rf ltxdoc.cfg + echo "\AtBeginDocument{\AlsoImplementation}" > ltxdoc.cfg + pdflatex -jobname=listings-devel listings.dtx + makeindex -s gind.ist listings-devel + pdflatex -jobname=listings-devel listings.dtx + pdflatex -jobname=listings-devel listings.dtx + rm -rf ltxdoc.cfg |