Allow rustdoc

This commit is contained in:
Jeremy Soller 2016-10-16 14:06:01 -06:00
parent 25fb1427ab
commit 2e575db3db
3 changed files with 12 additions and 3 deletions

View file

@ -5,7 +5,8 @@ KTARGET=$(ARCH)-unknown-none
KBUILD=build/kernel
KRUSTC=./krustc.sh
KRUSTCFLAGS=--target $(KTARGET).json -C opt-level=s -C soft-float
KCARGO=RUSTC="$(KRUSTC)" cargo
KRUSTDOC=./krustdoc.sh
KCARGO=RUSTC="$(KRUSTC)" RUSTDOC="$(KRUSTDOC)" cargo
KCARGOFLAGS=--target $(KTARGET).json -- -C opt-level=s -C soft-float
# Userspace variables
@ -13,11 +14,12 @@ TARGET=$(ARCH)-unknown-redox
BUILD=build/userspace
RUSTC=./rustc.sh
RUSTCFLAGS=--target $(TARGET).json -C opt-level=s --cfg redox
CARGO=RUSTC="$(RUSTC)" cargo
RUSTDOC=./rustdoc.sh
CARGO=RUSTC="$(RUSTC)" RUSTDOC="$(RUSTDOC)" cargo
CARGOFLAGS=--target $(TARGET).json -- -C opt-level=s --cfg redox
# Default targets
.PHONY: all clean update qemu bochs drivers schemes coreutils extrautils netutils userutils wireshark FORCE
.PHONY: all clean doc update qemu bochs drivers schemes coreutils extrautils netutils userutils wireshark FORCE
all: $(KBUILD)/harddrive.bin
@ -48,6 +50,9 @@ clean:
rm -rf filesystem/bin
rm -rf build
doc: $(KBUILD)/libkernel.a
$(KCARGO) doc --target $(KTARGET).json
update:
cargo update
cargo update --manifest-path libstd/Cargo.toml

2
krustdoc.sh Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
RUST_BACKTRACE=1 rustdoc -L build/kernel --cfg redox $*

2
rustdoc.sh Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
RUST_BACKTRACE=1 rustdoc -L build/userspace --cfg redox $*