commit 9d9d7dbc2e4b51cf925a78b062eb43ceab4bad2a parent f53ba79759fbe2d635fda36ef3d18b46ac956798 Author: citbl <citbl@citbl.org> Date: Fri, 10 Oct 2025 21:16:07 +1000 refac Diffstat:
23 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/makefile b/makefile @@ -17,7 +17,7 @@ else LIB := -I${LIBGCCJIT_PREFIX}/include -L${LIBGCCJIT_PREFIX} -lgccjit endif -SRC = *.c */*.c +SRC = */*/*.c */*.c BIN = oxc STD = -std=c2x diff --git a/file.h b/src/file.h diff --git a/gen.h b/src/gen.h diff --git a/gen/gen.c b/src/gen/gen.c diff --git a/hmap.c b/src/hmap.c diff --git a/hmap.h b/src/hmap.h diff --git a/hmap_test.c b/src/hmap_test.c diff --git a/hmap_test.h b/src/hmap_test.h diff --git a/lexer.c b/src/lexer.c diff --git a/lexer.h b/src/lexer.h diff --git a/main.c b/src/main.c diff --git a/parser.h b/src/parser.h diff --git a/parser/ast.c b/src/parser/ast.c diff --git a/parser/decl.c b/src/parser/decl.c diff --git a/parser/expr.c b/src/parser/expr.c diff --git a/parser/parser.c b/src/parser/parser.c diff --git a/parser/parser_utils.c b/src/parser/parser_utils.c diff --git a/parser/stmt.c b/src/parser/stmt.c diff --git a/sem.c b/src/sem.c diff --git a/sem.h b/src/sem.h diff --git a/types.h b/src/types.h diff --git a/utils.c b/src/utils.c diff --git a/utils.h b/src/utils.h