Cleaning:
make clean 删除由build创建的文档
make distclean 删除所有非源文件,包括.config
Build:
make all 构建所有
make toolchain 构建工具链
make sdk 构建可重定位的SDK
Configuration:
make menuconfig 基于curses的交互配置工具
make nconfig 基于ncurses的交互配置工具
make xconfig 基于qt的交互式配置工具
make gconfig 基于GTK的交互式配置工具
......
Package-specific:
make <pkg> build and install <pkg> and all its dependencies "构建并安装PKG及其所有依赖"
make <pkg>-source only download the source files for <pkg> "只下载PKG的源文件"
mkae <pkg>-extract extract <pkg> sources "提取(解压)PKG源代码"
make <pkg>-patch apply patches to <pkg> "给PKG打上补丁"
make <pkg>-depends build <pkg> '\' ' s dependencies
make <pkg>-configure build <pkg> up to the configure step"构建PKG直到配置的步骤"
make <pkg>-build build <pkg> up to the build step "构建PKG直到构建步骤"
make <pkg>-show-depends list packages on which <pkg> as a dependency "列出PKG所依赖的软件包"
make <pkg>-show-rdepends list packages which have <pkg> as a dependency "列出以PKG为依赖的软件包"
make <pkg>-show-recursive-depends recursively list packages on which <pkg> depends递归地列出PKG所依赖的软件包
make <pkg>-show-recursive-rdepends recursively list packages on which <pkg> as a dependency 递归地列出以PKG为依赖的软件包
make <pkg>-graph-depends Generate a graph of <pkg> dependencies "生成一个PKG依赖关系图"
make <pkg>-graph-rdepends Generate a graph of <pkg> reverse dependencies "生成一个PKG反向依赖关系图"
make <pkg>-dirclean remove <pkg> build directory "删除PKG构建目录"
make <pkg>-reconfigure restart the build from the configure step"从configure步骤重新开始构建"
make <pkg>-rebuild restart the build from the build step "从build步骤开始重新构建"