about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-06-30 02:49:42 +0200
committerMel <mel@rnrd.eu>2025-06-30 02:49:42 +0200
commitb16cf0fc98940554ef0febfe443ef690618d5083 (patch)
tree15cd49710d66988bf0acbb1ce92f64e3ea01d473 /Makefile
parent3d983097329607cc89b63425e97527c5ec0390c8 (diff)
downloadcatskill-b16cf0fc98940554ef0febfe443ef690618d5083.tar.zst
catskill-b16cf0fc98940554ef0febfe443ef690618d5083.zip
Implement Visitor system for syntax tree, with re-written tree printer as first usage
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0d4eb74..e99038a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 CFLAGS ?= -std=c99 -Wall -Werror -static -g -O0
 .DEFAULT_GOAL := all
 
-BOOTSTRAP_SOURCES = boot/catboot.c boot/common.c boot/lex.c boot/tree.c boot/parse.c
+BOOTSTRAP_SOURCES = boot/catboot.c boot/common.c boot/lex.c boot/tree.c boot/visit.c boot/parse.c
 SOURCES = src/catskill.csk
 
 build/catskill: build $(SOURCES)