Lines Matching refs:rustdoc
62 --crate-name $(subst rustdoc-,,$@) \
76 rustdoc: rustdoc-core rustdoc-macros rustdoc-compiler_builtins \ target
77 rustdoc-alloc rustdoc-kernel
86 >> $(objtree)/$(obj)/doc/rustdoc.css
88 rustdoc-macros: private rustdoc_host = yes
89 rustdoc-macros: private rustc_target_flags = --crate-type proc-macro \
91 rustdoc-macros: $(src)/macros/lib.rs FORCE
92 $(call if_changed,rustdoc)
94 rustdoc-core: private rustc_target_flags = $(core-cfgs)
95 rustdoc-core: $(RUST_LIB_SRC)/core/src/lib.rs FORCE
96 $(call if_changed,rustdoc)
98 rustdoc-compiler_builtins: $(src)/compiler_builtins.rs rustdoc-core FORCE
99 $(call if_changed,rustdoc)
105 rustdoc-alloc: private rustc_target_flags = $(alloc-cfgs) \
107 rustdoc-alloc: $(src)/alloc/lib.rs rustdoc-core rustdoc-compiler_builtins FORCE
108 $(call if_changed,rustdoc)
110 rustdoc-kernel: private rustc_target_flags = --extern alloc \
113 rustdoc-kernel: $(src)/kernel/lib.rs rustdoc-core rustdoc-macros \
114 rustdoc-compiler_builtins rustdoc-alloc $(obj)/libmacros.so \
116 $(call if_changed,rustdoc)