diff options
author | Martin Schröder <martin@oneiros.de> | 2007-12-29 21:14:20 +0000 |
---|---|---|
committer | Martin Schröder <martin@oneiros.de> | 2007-12-29 21:14:20 +0000 |
commit | d73a51fb1c4819c2a3710a77875a3c7aaea5e5fd (patch) | |
tree | d93a09d698afff434a565b3e1f1d585dab6386de /Build/source/utils | |
parent | f98106324bdba2018a0dd72f6534c76201e7fff9 (diff) |
Build/source/utils/tpic2pdftex: Fix make all/make install
git-svn-id: svn://tug.org/texlive/trunk@5991 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils')
-rw-r--r-- | Build/source/utils/tpic2pdftex/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Build/source/utils/tpic2pdftex/Makefile.in b/Build/source/utils/tpic2pdftex/Makefile.in index 575621eef7d..3e36f0b10aa 100644 --- a/Build/source/utils/tpic2pdftex/Makefile.in +++ b/Build/source/utils/tpic2pdftex/Makefile.in @@ -4,6 +4,7 @@ #$Id: Makefile,v 1.21 2007/01/14 13:35:17 hahe Exp hahe $ .PRECIOUS: %.tpic %.tex +.PHONY: first all VPATH = @srcdir@ srcdir = @srcdir@ @@ -20,7 +21,10 @@ INSTALL_DATA = @INSTALL_DATA@ first: : nothing to be done -all: example.pdf beamerexample.pdf +all: + : nothing to be done + +doc: example.pdf beamerexample.pdf example.pdf: example.tex pdftex $< @@ -32,7 +36,7 @@ beamerexample.pdf: beamerexample.tex pic -z -t $< > $@ %.tex: %.tpic - tpic2pdftex $< > $@ + $(srcdir)/tpic2pdftex $< > $@ install: $(INSTALL) -d $(bindir) |