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 | c1a199bbbf4b1e5c8659e3f96976bdd05addc0b7 (patch) | |
tree | 3664738c0f3875c8d167967be5aba706de03d34f /Makefile | |
parent | 093cb9028be4146036b994e836258dcf4c78e359 (diff) | |
download | txr-c1a199bbbf4b1e5c8659e3f96976bdd05addc0b7.tar.gz txr-c1a199bbbf4b1e5c8659e3f96976bdd05addc0b7.tar.bz2 txr-c1a199bbbf4b1e5c8659e3f96976bdd05addc0b7.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.
Diffstat (limited to 'Makefile')
-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) |