mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:05:55 +01:00
10 lines
294 B
Makefile
10 lines
294 B
Makefile
|
stage0/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
|
||
|
boot/rustboot$(X) $(MKFILES)
|
||
|
@$(call E, compile: $@)
|
||
|
$(BOOT) -shared -o $@ $<
|
||
|
|
||
|
stage0/rustc$(X): $(COMPILER_CRATE) $(COMPILER_INPUTS) $(BREQ)
|
||
|
@$(call E, compile: $@)
|
||
|
$(BOOT) -minimal -o $@ $<
|
||
|
$(Q)chmod 0755 $@
|