about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-05-18 19:43:19 +0200
committerMel <mel@rnrd.eu>2025-05-18 19:43:19 +0200
commit8c8d65f026121b4d75a31bff8a91c3fbf969fca5 (patch)
tree64ba811523b45c02c849c1655e83e54aba968ec5 /Makefile
parent7a7446a6dfdfcf5e02358fdb34c193eb67068b93 (diff)
downloadcatskill-8c8d65f026121b4d75a31bff8a91c3fbf969fca5.tar.zst
catskill-8c8d65f026121b4d75a31bff8a91c3fbf969fca5.zip
Define basic syntax tree (mostly expressions), with simple debug printing
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 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)