summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2024-03-08 23:51:07 -0800
committerKaz Kylheku <kaz@kylheku.com>2024-03-08 23:51:07 -0800
commit90db029b79418eb805e55ffcf28f310485233ffa (patch)
tree372ff957817d3d4675d9f2005956019f297b338f
parent6441dc11e616ea0714d9e69208ec1de28d35bc78 (diff)
downloadtxr-90db029b79418eb805e55ffcf28f310485233ffa.tar.gz
txr-90db029b79418eb805e55ffcf28f310485233ffa.tar.bz2
txr-90db029b79418eb805e55ffcf28f310485233ffa.zip
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.
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
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),)