Require xargo 0.3.20
This commit is contained in:
parent
52982d83a4
commit
03e6618a10
3
Makefile
3
Makefile
|
@ -1,6 +1,9 @@
|
||||||
# Configuration and variables
|
# Configuration and variables
|
||||||
include mk/config.mk
|
include mk/config.mk
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
include mk/depends.mk
|
||||||
|
|
||||||
all: build/harddrive.bin
|
all: build/harddrive.bin
|
||||||
|
|
||||||
coreboot: build/coreboot.elf
|
coreboot: build/coreboot.elf
|
||||||
|
|
6
mk/depends.mk
Normal file
6
mk/depends.mk
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# Dependencies
|
||||||
|
|
||||||
|
XARGO_VERSION=0.3.20
|
||||||
|
ifeq ($(shell cargo install --list | grep '^xargo v$(XARGO_VERSION):$$'),)
|
||||||
|
$(error xargo $(XARGO_VERSION) not found, run "cargo install --force --version $(XARGO_VERSION) xargo")
|
||||||
|
endif
|
Loading…
Reference in a new issue