From d02174ea8bc301876788dcbeb50b07de405704d7 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 9 Feb 2026 10:07:36 +0000 Subject: [PATCH] Makefile: add reader to units to compile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 31ebd24..d4c16fa 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ CFLAGS=$(GFLAGS) $(DFLAGS) -DTEST_VERBOSE=1 endif # Units to compile -UNITS=src/sv.c src/vec.c src/stream.c src/symtable.c src/tag.c src/lisp.c +UNITS=src/sv.c src/vec.c src/stream.c src/symtable.c src/tag.c src/lisp.c src/reader.c OBJECTS:=$(patsubst src/%.c, $(DIST)/%.o, $(UNITS)) TEST_UNITS=test/main.c