aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-24 15:07:36 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-24 15:07:36 -0400
commite30c0f06d55cd7b27c5d012a96989920f586e4a1 (patch)
tree785c0f59ee83173867db508dbcb271adc97d1582 /Makefile
parentbe534f5e511a1d3836254b827cdaa2b8c309f5c4 (diff)
Split list compilation logic into its own file.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6a6d8897..f7dcfc28 100644
--- a/Makefile
+++ b/Makefile
@@ -95,7 +95,7 @@ else
endif
EXE_FILE=tomo_$(TOMO_VERSION)
-COMPILER_OBJS=$(patsubst %.c,%.o,$(wildcard src/*.c))
+COMPILER_OBJS=$(patsubst %.c,%.o,$(wildcard src/*.c src/compile/*.c))
STDLIB_OBJS=$(patsubst %.c,%.o,$(wildcard src/stdlib/*.c))
TESTS=$(patsubst test/%.tm,test/results/%.tm.testresult,$(wildcard test/*.tm))
API_YAML=$(wildcard api/*.yaml)