The Buildroot user manual
buildroot.org › downloads › manualConfigure your Buildroot system with make menuconfig, make xconfig or any other configuration interface provided with Buildroot. Build your Buildroot system by running make . Start Eclipse to develop, execute and debug your own custom applications and libraries, that will rely on the libraries built and installed by Buildroot.
buildroot/Makefile at master - GitHub
github.com › buildroot › buildroot@echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build ' @echo ' make O=dir - Locate all output files in "dir", including .config ' @echo: @echo ' For further details, see README, generate the Buildroot manual, or consult ' @echo ' it on-line at http://buildroot.org/docs.html ' @echo # List the defconfig files
The Buildroot user manual
https://buildroot.org/downloads/manual/manual.htmlBuildroot has always been capable of using parallel build on a per package basis: each package is built by Buildroot using make -jN (or the equivalent invocation for non-make-based build systems). The level of parallelism is by default number of CPUs + 1, but it can be adjusted using the BR2_JLEVEL configuration option.