X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/733a5f4b3083f389ca13acdbf22cd3fe4726bd8d..ffa04ed55b8c6f0ca1250cd4d3d1ad3d03b55bc3:/icons/Makefile diff --git a/icons/Makefile b/icons/Makefile index 0697e024..373816f3 100644 --- a/icons/Makefile +++ b/icons/Makefile @@ -1,6 +1,6 @@ # Makefile for the PuTTY icon suite. -ICONS = putty puttycfg puttygen pscp pageant pterm ptermcfg +ICONS = putty puttycfg puttygen pscp pageant pterm ptermcfg installer SIZES = 16 32 48 MODE = # override to -it on command line for opaque testing @@ -9,7 +9,8 @@ PNGS = $(foreach I,$(ICONS),$(foreach S,$(SIZES),$(I)-$(S).png)) MONOPNGS = $(foreach I,$(ICONS),$(foreach S,$(SIZES),$(I)-$(S)-mono.png)) TRUEPNGS = $(foreach I,$(ICONS),$(foreach S,$(SIZES),$(I)-$(S)-true.png)) -ICOS = putty.ico puttygen.ico pscp.ico pageant.ico pageants.ico puttycfg.ico +ICOS = putty.ico puttygen.ico pscp.ico pageant.ico pageants.ico puttycfg.ico \ + installer.ico CICONS = xpmputty.c xpmpucfg.c xpmpterm.c xpmptcfg.c base: icos cicons @@ -59,6 +60,22 @@ pscp.ico: pscp-16.png pscp-32.png pscp-48.png \ pscp-16-mono.png pscp-32-mono.png pscp-48-mono.png ./icon.pl -4 $(filter-out %-mono.png, $^) -1 $(filter %-mono.png, $^) > $@ +# Because the installer icon makes heavy use of brown when drawing +# the cardboard box, it's worth having 8-bit versions of it in +# addition to the 4- and 1-bit ones. +installer.ico: installer-16.png installer-32.png installer-48.png \ + installer-16-mono.png installer-32-mono.png \ + installer-48-mono.png \ + installer-16-true.png installer-32-true.png \ + installer-48-true.png + ./icon.pl -8 $(filter %-true.png, $^) \ + -4 $(filter-out %-true.png, $(filter-out %-mono.png, $^)) \ + -1 $(filter %-mono.png, $^) > $@ + +# Icon for the website. (This isn't linked into "make all".) +website.ico: putty-16.png + ./icon.pl -4 $^ >$@ + xpmputty.c: putty-16.png putty-32.png putty-48.png ./cicon.pl main_icon $^ > $@