diff options
author | bptato <nincsnevem662@gmail.com> | 2024-08-24 19:48:55 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-08-24 19:52:43 +0200 |
commit | b6e10287b23241fb8933f311a72ebe95976b174b (patch) | |
tree | 8124db650db1c149ba62f02066b88a64b2573092 /Makefile | |
parent | 8db0a94ca4287c4f2e1361b056994e0ec206712d (diff) | |
download | chawan-b6e10287b23241fb8933f311a72ebe95976b174b.tar.gz |
sixel: break out into a separate cgi script
This caches sixel output. Works best when the line height is a multiple of 6px, but should still be faster than the previous solution everywhere else too (simply by virtue of encoding separate images in parallel). Next step: actual color quantization
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index e5b94be4..48483754 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ all: $(OUTDIR_BIN)/cha $(OUTDIR_BIN)/mancha $(OUTDIR_CGI_BIN)/http \ $(OUTDIR_CGI_BIN)/cha-finger $(OUTDIR_CGI_BIN)/about \ $(OUTDIR_CGI_BIN)/file $(OUTDIR_CGI_BIN)/ftp \ $(OUTDIR_CGI_BIN)/man $(OUTDIR_CGI_BIN)/spartan \ - $(OUTDIR_CGI_BIN)/stbi $(OUTDIR_CGI_BIN)/jebp \ + $(OUTDIR_CGI_BIN)/stbi $(OUTDIR_CGI_BIN)/jebp $(OUTDIR_CGI_BIN)/sixel \ $(OUTDIR_LIBEXEC)/urldec $(OUTDIR_LIBEXEC)/urlenc \ $(OUTDIR_LIBEXEC)/md2html $(OUTDIR_LIBEXEC)/ansi2html ln -sf "$(OUTDIR)/$(TARGET)/bin/cha" cha @@ -164,7 +164,7 @@ manpages = $(manpages1) $(manpages5) .PHONY: manpage manpage: $(manpages:%=doc/%) -protocols = http about file ftp gopher gmifetch cha-finger man spartan stbi jebp +protocols = http about file ftp gopher gmifetch cha-finger man spartan stbi jebp sixel converters = gopher2html md2html ansi2html gmi2html tools = urlenc |