From 90db029b79418eb805e55ffcf28f310485233ffa Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 8 Mar 2024 23:51:07 -0800 Subject: build: include place.tlo among early tlo's. * Makefile (STDLIB_EARLY_TLOS): Include place.tlo between compiler.tlo and asm.tlo. If place is built late, it has a bad impact on the build time. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c286cf26..b481c6b9 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,8 @@ EXTRA_OBJS-$(add_win_res) += win/txr.res STDLIB_SRCS := $(wildcard stdlib/*.tl) STDLIB_TLOS := $(patsubst %.tl,%.tlo,$(STDLIB_SRCS)) -STDLIB_EARLY_TLOS := $(addprefix stdlib/,optimize.tlo param.tlo compiler.tlo asm.tlo) +STDLIB_EARLY_TLOS := $(addprefix stdlib/,optimize.tlo param.tlo \ + compiler.tlo place.tlo asm.tlo) STDLIB_LATE_TLOS := $(filter-out $(STDLIB_EARLY_TLOS),$(STDLIB_TLOS)) ifneq ($(have_git),) -- cgit v1.2.3