about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-05-21 16:19:59 +0200
committerMel <mel@rnrd.eu>2025-05-21 16:19:59 +0200
commit1e07cecafc62d18ba05f21101e13b131a10e8c45 (patch)
treee036129c57b734292ff15b71a1d193aa0a97c678 /Makefile
parent8c8d65f026121b4d75a31bff8a91c3fbf969fca5 (diff)
downloadcatskill-1e07cecafc62d18ba05f21101e13b131a10e8c45.tar.zst
catskill-1e07cecafc62d18ba05f21101e13b131a10e8c45.zip
Basic expression parser with operator precedence and associativity
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 91d1853..0d4eb74 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
+BOOTSTRAP_SOURCES = boot/catboot.c boot/common.c boot/lex.c boot/tree.c boot/parse.c
 SOURCES = src/catskill.csk
 
 build/catskill: build $(SOURCES)