changeset 5966:be252143f5e1

[project @ 2006-08-24 20:06:24 by jwe]
author jwe
date Thu, 24 Aug 2006 20:06:24 +0000
parents 290420f503b2
children d542d9197839
files doc/ChangeLog doc/interpreter/images/Makefile.in
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-24  John W. Eaton  <jwe@octave.org>
+
+	* interpreter/images/Makefile.in (SPARSEIMAGES_PDF): New macro.
+	Keep PDF images out of IMAGES list.
+
 2006-08-18  John W. Eaton  <jwe@octave.org>
 
 	* conf.texi.in: Eliminate TARGETHOSTTYPE variable.
--- a/doc/interpreter/images/Makefile.in
+++ b/doc/interpreter/images/Makefile.in
@@ -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)