On Mon, Nov 28, 2022 at 9:19 PM Carlos Bilbao <carlos.bilbao@xxxxxxx> wrote: > > Include HTML output generated from rustdoc into the Linux kernel > documentation on Rust. Add Makefile target `make htmlrust` to combine > make htmldocs and the generation of Rust documentation. I think Konstantin (Cc'ing him) wanted us to integrate this into `htmldocs`, rather than having a new target. That is, if `CONFIG_RUST` is enabled, call the `rustdoc` target there. In any case, I will also comment on this approach below. Thanks for this! > +ifdef CONFIG_RUST > +htmlrust: > + @make rustavailable Why was this needed? > + @make LLVM=1 rustdoc > + @cp -r rust/doc/* Documentation/output/ We should change `rustdoc` to generate the docs directly in the right place now that we have one. Cheers, Miguel