aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-25 23:53:03 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-25 23:53:03 -0400
commit91b6746fe1315aa9c09936b69cea3892c04c11af (patch)
tree338a167cf476e9c27529b05fdd6b1e4c5dd48612 /Makefile
parent8898144eeaeab90cefeb6cbf746e9a336bf239be (diff)
Split out formatter into subfiles
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 95f07128..58a8d01f 100644
--- a/Makefile
+++ b/Makefile
@@ -95,7 +95,7 @@ else
endif
EXE_FILE=tomo_$(TOMO_VERSION)
-COMPILER_OBJS=$(patsubst %.c,%.o,$(wildcard src/*.c src/compile/*.c src/parse/*.c))
+COMPILER_OBJS=$(patsubst %.c,%.o,$(wildcard src/*.c src/compile/*.c src/parse/*.c src/formatter/*.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)