From 8c8d65f026121b4d75a31bff8a91c3fbf969fca5 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 18 May 2025 19:43:19 +0200 Subject: Define basic syntax tree (mostly expressions), with simple debug printing Signed-off-by: Mel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d24a003..91d1853 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 +BOOTSTRAP_SOURCES = boot/catboot.c boot/common.c boot/lex.c boot/tree.c SOURCES = src/catskill.csk build/catskill: build $(SOURCES) -- cgit 1.4.1