From c1a199bbbf4b1e5c8659e3f96976bdd05addc0b7 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 29 Apr 2018 22:29:29 -0700 Subject: Makefile: use order-only between early and late tlo-s. * Makefile: make STDLIB_EARLY_TLOS order-only prerequisites of STDLIB_LATE_TLOS, rather than conventional prerequisites. This means that the early tlo-s are built or rebuilt before the late ones, but there is no other dependency expressed: an update of early tlo-s doesn't force late tlo-s to be out-of-date and updated also. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 66298ddb..c9d0f99d 100644 --- a/Makefile +++ b/Makefile @@ -223,7 +223,7 @@ endif all: $(BUILD_TARGETS) stage1 stage2 -$(STDLIB_LATE_TLOS): $(STDLIB_EARLY_TLOS) +$(STDLIB_LATE_TLOS): | $(STDLIB_EARLY_TLOS) stage1: $(STDLIB_TLOS) -- cgit v1.2.3