diff options
author | Norbert Preining <preining@logic.at> | 2007-12-29 19:21:27 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2007-12-29 19:21:27 +0000 |
commit | ee86762d75bc67e04297698af49842f06e790970 (patch) | |
tree | 9333587dc1b8b1f1108c73a825cf09c5ecab7fb1 /Build/source/utils/tpic2pdftex/Makefile.in | |
parent | 9c45472de91196e0aaaa10867664995c35346501 (diff) |
add automagic to tpic2pdftex ... it is now build/installed
git-svn-id: svn://tug.org/texlive/trunk@5987 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/tpic2pdftex/Makefile.in')
-rw-r--r-- | Build/source/utils/tpic2pdftex/Makefile.in | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/Build/source/utils/tpic2pdftex/Makefile.in b/Build/source/utils/tpic2pdftex/Makefile.in new file mode 100644 index 00000000000..575621eef7d --- /dev/null +++ b/Build/source/utils/tpic2pdftex/Makefile.in @@ -0,0 +1,53 @@ +# Makefile.in for tpic2pdftex +# created from Makefile by Norbert Preining +# +#$Id: Makefile,v 1.21 2007/01/14 13:35:17 hahe Exp hahe $ + +.PRECIOUS: %.tpic %.tex + +VPATH = @srcdir@ +srcdir = @srcdir@ +SHELL = @SHELL@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ + +INSTALL = @INSTALL@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_DATA = @INSTALL_DATA@ + +first: + : nothing to be done + +all: example.pdf beamerexample.pdf + +example.pdf: example.tex + pdftex $< + +beamerexample.pdf: beamerexample.tex + pdflatex $< + +%.tpic: %.pic Makefile + pic -z -t $< > $@ + +%.tex: %.tpic + tpic2pdftex $< > $@ + +install: + $(INSTALL) -d $(bindir) + $(INSTALL_SCRIPT) $(srcdir)/tpic2pdftex $(bindir)/tpic2pdftex + +clean: + - rm *.tex + - rm *.log + - rm *.toc + - rm *.out + - rm *.snm + - rm *.nav + - rm *.aux + - rm *.tpic + +allclean: + make clean + - rm *.pdf |