summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2014-01-08 14:19:11 -0500
committerAlex Xu <alex_y_xu@yahoo.ca>2014-01-08 14:19:11 -0500
commite01fd685f236bbe131734af6be0f340cde79de94 (patch)
treef51f8ceebdcc08d506d50feaf592e23799d7d09f /Makefile
parent60b3d27a4bba167d296de886b93888d82b69cac4 (diff)
downloadhtml5ks-e01fd685f236bbe131734af6be0f340cde79de94.tar.xz
html5ks-e01fd685f236bbe131734af6be0f340cde79de94.zip
Move trim to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 48d796e..607d18e 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,10 @@ FFMPEG ?= ffmpeg
FFMPEG += -v warning $(FFMPEGFLAGS)
OPUSENC ?= opusenc
ZOPFLIPNG ?= zopflipng
+OPTIPNG ?= optipng
JPEGOPTIM ?= jpegoptim
CWEBP ?= cwebp
+CWEBP += -short -alpha_cleanup
WEBPMUX ?= webpmux
CONVERT ?= convert
APNGASM ?= apngasm
@@ -77,6 +79,12 @@ images: $(WEBP) $(CTC_ANIM) www/favicon.ico
www/favicon.ico: $(DUMP)/ui/icon.png
$(CONVERT) $< -resize 256x256 -transparent white $@
+$(DUMP)/ui/bt-cf-unchecked.webp $(DUMP)/ui/bt-cf-checked.webp: %.webp: %.png
+ $(CONVERT) -trim $< $<
+ $(OPTIPNG) -o7 $<
+ $(ZOPFLIPNG) -m -y $< $<
+ $(CWEBP) -q 99 -m 6 $< -o $@
+
$(DUMP)/ui/ctc_strip-0.png: $(CTC_ANIM_SRC)
$(CONVERT) $< -crop 16x16 $(patsubst %.png,%*.png,$<)