From b16cf0fc98940554ef0febfe443ef690618d5083 Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 30 Jun 2025 02:49:42 +0200 Subject: Implement Visitor system for syntax tree, with re-written tree printer as first usage Signed-off-by: Mel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit 1.4.1