Split CE code into multiple files
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s

This commit is contained in:
2026-03-03 20:59:21 +01:00
parent aa32f2374f
commit 2a891fcdd1
16 changed files with 726 additions and 593 deletions

View File

@@ -1,3 +1,17 @@
c += ce.c
c += ce.c \
arena_alloc.c \
strbuf.c \
context.c \
parser.c \
interp.c \
mprintf.c \
self.c
o += ce.o
o += ce.o \
arena_alloc.o \
strbuf.o \
context.o \
parser.o \
interp.o \
mprintf.o \
self.o