diff options
author | Karl Berry <karl@freefriends.org> | 2009-05-16 00:19:13 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-05-16 00:19:13 +0000 |
commit | bab45528d65eaafe68a705dbb2a57075c7b7cbd8 (patch) | |
tree | 10b4ae2b5195c8dede153ab89359ec00f55f325f /Build/source/utils/asymptote/doc/png/Makefile.in | |
parent | 8643d90372e9c31e0f461c15c596b60a545bd7d3 (diff) |
asymptote 1.72 sources (not integrated into build yet)
git-svn-id: svn://tug.org/texlive/trunk@13110 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/doc/png/Makefile.in')
-rw-r--r-- | Build/source/utils/asymptote/doc/png/Makefile.in | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/doc/png/Makefile.in b/Build/source/utils/asymptote/doc/png/Makefile.in new file mode 100644 index 00000000000..d49c9813578 --- /dev/null +++ b/Build/source/utils/asymptote/doc/png/Makefile.in @@ -0,0 +1,46 @@ +ASYFILES = $(notdir $(wildcard ../*.asy)) latexusage.asy +SOURCE = ../asymptote.texi ../version.texi ../options +ASY = ../asy -dir ../base -config "" -render=0 + +docdir = $(DESTDIR)@docdir@ +infodir = $(DESTDIR)@infodir@ +datarootdir = @datarootdir@ +INSTALL = @INSTALL@ + +all: html info + +%.png: ../%.asy + cd ..; $(ASY) -f png -o png/ $(notdir $<) + +latexusage.png: ../latexusage.eps + convert -alpha Off -density 144x144 +antialias -geometry 50%x \ + ../latexusage.eps latexusage.png + +index.html: $(SOURCE) $(ASYFILES:.asy=.png) + makeinfo --html ../asymptote -o . + +asymptote.info: $(SOURCE) $(ASYFILES:.asy=.png) + makeinfo ../asymptote + +html: index.html + +info: asymptote.info + +clean: FORCE + -rm -f *.png *.html asymptote.info* texput.aux texput.log + +distclean: + -rm -f Makefile + +install: + ${INSTALL} -d -m 755 $(infodir) + ${INSTALL} -p -m 644 asymptote.info $(infodir) + -${INSTALL} -p -m 644 asymptote.info-* $(infodir) + -if test -z "$(DESTDIR)"; then \ + install-info --infodir=$(infodir) asymptote.info; \ + fi + +uninstall: + -install-info --remove --infodir=$(infodir) asymptote.info + -rm -f $(infodir)/asymptote.info $(infodir)/asymptote.info-* +FORCE: |