[Buildbot-commits] buildbot/docs/images Makefile,1.1,1.2

Brian Warner warner at users.sourceforge.net
Fri Aug 11 07:31:26 UTC 2006


Update of /cvsroot/buildbot/buildbot/docs/images
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26391/docs/images

Modified Files:
	Makefile 
Log Message:
[project @ make sure images get built when rendering the manual]

Original author: warner at lothar.com
Date: 2006-08-11 04:47:29

Index: Makefile
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/images/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile	31 Jul 2006 08:31:33 -0000	1.1
+++ Makefile	11 Aug 2006 07:31:24 -0000	1.2
@@ -1,5 +1,12 @@
 
-all: overview.png overview.eps slaves.png slaves.eps slavebuilder.png slavebuilder.eps master.png master.eps status.png status.eps
+SOURCES = overview.svg slaves.svg slavebuilder.svg master.svg status.svg
+PNGS = $(patsubst %.svg,%.png,$(SOURCES))
+EPSS = $(patsubst %.svg,%.eps,$(SOURCES))
+
+.PHONY: images-png images-eps
+all: $(PNGS) $(EPSS)
+images-png: $(PNGS)
+images-eps: $(EPSS)
 
 %.png: %.svg
 	inkscape -b white --export-png $@ $<





More information about the Commits mailing list