Skip to content

Commit 42109f5

Browse files
committed
Tidy up stage 2 and 3 mk files.
1 parent c80255e commit 42109f5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

mk/stage2.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
stage2/std.o: $(STDLIB_CRATE) $(STDLIB_INPUTS) stage1/rustc$(X) \
2-
stage1/intrinsics.bc $(MKFILES)
1+
stage2/std.o: $(STDLIB_CRATE) $(STDLIB_INPUTS) \
2+
stage1/rustc$(X) stage1/$(CFG_STDLIB) stage1/intrinsics.bc \
3+
$(LREQ) $(MKFILES)
34
@$(call E, compile: $@)
45
$(STAGE1) -c --shared -o $@ $<
56

mk/stage3.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
stage3/std.o: $(STDLIB_CRATE) $(STDLIB_INPUTS) stage2/rustc$(X) \
2-
stage2/intrinsics.bc $(MKFILES)
1+
stage3/std.o: $(STDLIB_CRATE) $(STDLIB_INPUTS) \
2+
stage2/rustc$(X) stage2/$(CFG_STDLIB) stage2/intrinsics.bc \
3+
$(LREQ) $(MKFILES)
34
@$(call E, compile: $@)
45
$(STAGE2) -c --shared -o $@ $<
56

0 commit comments

Comments
 (0)