# HG changeset patch # User jwe # Date 1156449984 0 # Node ID be252143f5e1ec4fc5e288d562b2fa5d5a38173e # Parent 290420f503b27468e7434c7252ef327ebfdf9dd1 [project @ 2006-08-24 20:06:24 by jwe] diff -r 290420f503b2 -r be252143f5e1 doc/ChangeLog --- a/doc/ChangeLog Thu Aug 24 19:01:17 2006 +0000 +++ b/doc/ChangeLog Thu Aug 24 20:06:24 2006 +0000 @@ -1,3 +1,8 @@ +2006-08-24 John W. Eaton + + * interpreter/images/Makefile.in (SPARSEIMAGES_PDF): New macro. + Keep PDF images out of IMAGES list. + 2006-08-18 John W. Eaton * conf.texi.in: Eliminate TARGETHOSTTYPE variable. diff -r 290420f503b2 -r be252143f5e1 doc/interpreter/images/Makefile.in --- a/doc/interpreter/images/Makefile.in Thu Aug 24 19:01:17 2006 +0000 +++ b/doc/interpreter/images/Makefile.in Thu Aug 24 20:06:24 2006 +0000 @@ -12,10 +12,14 @@ SPARSEIMAGES = \ $(addsuffix .eps, $(SPARSEIMAGES_1)) \ $(addsuffix .png, $(SPARSEIMAGES_1)) \ - $(addsuffix .txt, $(SPARSEIMAGES_1)) \ + $(addsuffix .txt, $(SPARSEIMAGES_1)) + +# These are kept separate from the rest because they are generated +# from the EPS files instead of directly from the sparseimages.m script. +SPARSEIMAGES_PDF = \ $(addsuffix .pdf, $(SPARSEIMAGES_1)) -IMAGES = $(SPARSEIMAGES) +IMAGES = $(SPARSEIMAGES) $(SPARSEIMAGES_PDF) DISTFILES = Makefile.in $(SOURCES) $(IMAGES)