diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-19 13:59:30 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-19 13:59:30 +0000 |
commit | 0b7b2c69ec83497d9accab064da0f4ad07662d42 (patch) | |
tree | e8f22a2acecbf3035850f56beb1c8161c53cdf2d /Build/source/utils/tpic2pdftex | |
parent | ee507bbd1fc483c58acb33cca25509a4dd81df9b (diff) |
prepare for new build system
git-svn-id: svn://tug.org/texlive/trunk@12429 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/tpic2pdftex')
-rw-r--r-- | Build/source/utils/tpic2pdftex/Makefile.in.orig | 57 | ||||
-rw-r--r-- | Build/source/utils/tpic2pdftex/ac/withenable.ac | 3 | ||||
-rw-r--r-- | Build/source/utils/tpic2pdftex/configure.ac.orig | 15 |
3 files changed, 75 insertions, 0 deletions
diff --git a/Build/source/utils/tpic2pdftex/Makefile.in.orig b/Build/source/utils/tpic2pdftex/Makefile.in.orig new file mode 100644 index 00000000000..3e36f0b10aa --- /dev/null +++ b/Build/source/utils/tpic2pdftex/Makefile.in.orig @@ -0,0 +1,57 @@ +# 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 +.PHONY: first all + +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: + : nothing to be done + +doc: example.pdf beamerexample.pdf + +example.pdf: example.tex + pdftex $< + +beamerexample.pdf: beamerexample.tex + pdflatex $< + +%.tpic: %.pic Makefile + pic -z -t $< > $@ + +%.tex: %.tpic + $(srcdir)/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 diff --git a/Build/source/utils/tpic2pdftex/ac/withenable.ac b/Build/source/utils/tpic2pdftex/ac/withenable.ac new file mode 100644 index 00000000000..f2e49b65139 --- /dev/null +++ b/Build/source/utils/tpic2pdftex/ac/withenable.ac @@ -0,0 +1,3 @@ +## utils/tpic2pdftex/ac/withenable.ac +## configure options and TL libraries required for tpic2pdftex +KPSE_WITH_PROG([tpic2pdftex]) diff --git a/Build/source/utils/tpic2pdftex/configure.ac.orig b/Build/source/utils/tpic2pdftex/configure.ac.orig new file mode 100644 index 00000000000..9cc1eef3cf3 --- /dev/null +++ b/Build/source/utils/tpic2pdftex/configure.ac.orig @@ -0,0 +1,15 @@ +dnl configure.ac +dnl +dnl Copyright 2007 by Norbert Preining. +dnl +dnl This file was generated for the tpic2pdftex program in the TeX Live +dnl distribution. +dnl GNU General Public License +dnl +AC_INIT(tpic2pdftex, 1.94, hartmut_henkel@gmx.de) + +AC_CONFIG_FILES(Makefile) + +AC_PROG_INSTALL + +AC_OUTPUT |