about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-03-29 16:02:33 +0100
committerbptato <nincsnevem662@gmail.com>2024-03-29 16:53:53 +0100
commit9053a9096bfe7845b712989ebfa3b9cba28cd3d5 (patch)
tree5e4b477958954e827bca9bee7f1af4a63f635976 /Makefile
parenta642101c086f689fc6ba6c3e86ad16f24b95840c (diff)
downloadchawan-9053a9096bfe7845b712989ebfa3b9cba28cd3d5.tar.gz
ansi2html: do not use posixstream
it's an unnecessary abstraction here
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
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