diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-04-29 22:29:29 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-04-29 22:29:29 -0700 |
commit | 4dc29f41fea430d23fc9a27b7a575dcceca2ff13 (patch) | |
tree | 3664738c0f3875c8d167967be5aba706de03d34f | |
parent | 2d51f96f256f8a0fcef372ffae707d9b188b9539 (diff) | |
download | txr-4dc29f41fea430d23fc9a27b7a575dcceca2ff13.tar.gz txr-4dc29f41fea430d23fc9a27b7a575dcceca2ff13.tar.bz2 txr-4dc29f41fea430d23fc9a27b7a575dcceca2ff13.zip |
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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |