diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2004-11-17 15:04:12 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-11-17 15:04:12 +0800 |
commit | 544016faf610fe5f339be059eee57af2cfcbfd3d (patch) | |
tree | 2a20836453fd1f7e9fa77877d1874a367ee42faf /doc/devel/images/Makefile | |
parent | 3fcd1c267b6855465f9c11d79b64c8a704e87148 (diff) | |
download | gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.tar gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.tar.gz gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.tar.bz2 gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.tar.lz gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.tar.xz gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.tar.zst gsoc2013-evolution-544016faf610fe5f339be059eee57af2cfcbfd3d.zip |
Stupid idiot, I thought i lost these files and remade them.
The menu merging one looks better anyway.
svn path=/trunk/; revision=27935
Diffstat (limited to 'doc/devel/images/Makefile')
-rw-r--r-- | doc/devel/images/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/devel/images/Makefile b/doc/devel/images/Makefile new file mode 100644 index 0000000000..bef9f8bf62 --- /dev/null +++ b/doc/devel/images/Makefile @@ -0,0 +1,21 @@ + +# this is only a temporary makefile + +# you need ps2eps, groff, pnmutils, and ghostscript installed + +PICS=e-config-flow.pic e-popup-merge-1.pic e-popup-merge-2.pic +EPS=$(PICS:.pic=.eps) +PNG=$(PICS:.pic=.png) + +all: $(PNG) + +%.eps: %.pic + groff -p $^ | ps2eps -f -l > $@ + +%.png: %.pic + groff -p $^ \ + | gs -q -dSAFER -dNOPAUSE -dBATCH -r180 -sDEVICE=pnmraw -sOutputFile=- - -c quit \ + | pnmcrop \ + | pnmscale 0.5 \ + | pnmtopng > $@ + |