diff options
author | bptato <nincsnevem662@gmail.com> | 2024-03-29 16:02:33 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-03-29 16:53:53 +0100 |
commit | 9053a9096bfe7845b712989ebfa3b9cba28cd3d5 (patch) | |
tree | 5e4b477958954e827bca9bee7f1af4a63f635976 /Makefile | |
parent | a642101c086f689fc6ba6c3e86ad16f24b95840c (diff) | |
download | chawan-9053a9096bfe7845b712989ebfa3b9cba28cd3d5.tar.gz |
ansi2html: do not use posixstream
it's an unnecessary abstraction here
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 3f6a174b..87d70477 100644 --- a/Makefile +++ b/Makefile @@ -89,8 +89,8 @@ $(OUTDIR_LIBEXEC)/md2html: adapter/format/md2html.nim $(NIMC) $(FLAGS) --nimcache:"$(OBJDIR)/$(TARGET)/md2html" \ -o:"$(OUTDIR_LIBEXEC)/md2html" adapter/format/md2html.nim -$(OUTDIR_LIBEXEC)/ansi2html: adapter/format/ansi2html.nim src/io/posixstream.nim \ - src/io/dynstream.nim src/types/color.nim src/utils/twtstr.nim +$(OUTDIR_LIBEXEC)/ansi2html: adapter/format/ansi2html.nim src/types/color.nim \ + src/utils/twtstr.nim @mkdir -p "$(OUTDIR_LIBEXEC)" $(NIMC) $(FLAGS) --nimcache:"$(OBJDIR)/$(TARGET)/ansi2html" \ -o:"$(OUTDIR_LIBEXEC)/ansi2html" adapter/format/ansi2html.nim |