diff options
author | bptato <nincsnevem662@gmail.com> | 2024-09-15 18:13:00 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-09-15 19:13:00 +0200 |
commit | 9f453ca3997528252eb28268e38480f58fbce4f6 (patch) | |
tree | 3c4f5658e729052855cad5eea15c22a32d3f7b67 /Makefile | |
parent | bf721f2e604974b5e40dc2dc099c899f0ded2798 (diff) | |
download | chawan-9f453ca3997528252eb28268e38480f58fbce4f6.tar.gz |
Refactor img/*
I've moved most image logic to adapter, so it doesn't really make sense to have this subdir anymore.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index adcc30c8..eb9ddf08 100644 --- a/Makefile +++ b/Makefile @@ -112,9 +112,9 @@ $(OUTDIR_CGI_BIN)/stbi: adapter/img/stbi.nim adapter/img/stb_image.c \ $(OUTDIR_CGI_BIN)/jebp: adapter/img/jebp.c adapter/img/jebp.h \ src/utils/sandbox.nim $(OUTDIR_CGI_BIN)/sixel: src/types/color.nim src/utils/sandbox.nim $(twtstr) $(dynstream) -$(OUTDIR_CGI_BIN)/canvas: src/img/bitmap.nim src/img/painter.nim \ - src/img/path.nim src/io/bufreader.nim src/types/color.nim \ - src/types/line.nim src/utils/sandbox.nim $(dynstream) $(twtstr) +$(OUTDIR_CGI_BIN)/canvas: src/types/canvastypes.nim src/types/path.nim \ + src/io/bufreader.nim src/types/color.nim src/types/line.nim \ + src/utils/sandbox.nim $(dynstream) $(twtstr) $(OUTDIR_LIBEXEC)/urlenc: $(twtstr) $(OUTDIR_LIBEXEC)/gopher2html: adapter/gophertypes.nim $(twtstr) $(OUTDIR_LIBEXEC)/ansi2html: src/types/color.nim $(twtstr) |