| /linux/Documentation/translations/zh_TW/admin-guide/ |
| H A D | README.rst | 102 make mrproper 119 ``make O=output/dir`` 選項可以爲輸出文件(包括 .config)指定備用位置。 128 make O=/home/name/build/kernel menuconfig 129 make O=/home/name/build/kernel 130 sudo make O=/home/name/build/kernel modules_install install 132 請注意:如果使用了 ``O=output/dir`` 選項,那麼它必須用於make的所有調用。 139 將現有配置升級到新版本,請使用 ``make oldconfig`` ,它只會詢問您新配置 144 "make config" 純文本界面。 146 "make menuconfig" 基於文本的彩色菜單、選項列表和對話框。 148 "make nconfig" 增強的基於文本的彩色菜單。 [all …]
|
| /linux/Documentation/translations/zh_CN/admin-guide/ |
| H A D | README.rst | 99 make mrproper 116 ``make O=output/dir`` 选项可以为输出文件(包括 .config)指定备用位置。 125 make O=/home/name/build/kernel menuconfig 126 make O=/home/name/build/kernel 127 sudo make O=/home/name/build/kernel modules_install install 129 请注意:如果使用了 ``O=output/dir`` 选项,那么它必须用于make的所有调用。 136 将现有配置升级到新版本,请使用 ``make oldconfig`` ,它只会询问您新配置 141 "make config" 纯文本界面。 143 "make menuconfig" 基于文本的彩色菜单、选项列表和对话框。 145 "make nconfig" 增强的基于文本的彩色菜单。 [all …]
|
| /linux/tools/build/tests/ |
| H A D | run.sh | 5 make -C ex V=1 clean > ex.out 2>&1 6 make -C ex V=1 >> ex.out 2>&1 13 make -C ex V=1 clean > /dev/null 2>&1 18 make -C ex V=1 clean > ex.out 2>&1 21 make -rR -C ex V=1 ex.o >> ex.out 2>&1 22 make -rR -C ex V=1 ex.i >> ex.out 2>&1 23 make -rR -C ex V=1 ex.s >> ex.out 2>&1 35 make -C ex V=1 clean > /dev/null 2>&1 40 make -C ex V=1 clean > ex.out 2>&1 44 make -C ex V=1 CFLAGS=-DINCLUDE >> ex.out 2>&1 [all …]
|
| /linux/samples/bpf/ |
| H A D | README.rst | 32 make -C tools clean 33 make -C samples/bpf clean 34 make clean 39 make defconfig 48 make headers_install 51 level directory, that the make system will automatically pick up first. 59 make M=samples/bpf 61 It is also possible to call make from this directory. This will just 62 hide the invocation of make as above. 91 It is also possible to point make to the newly compiled 'llc' or [all …]
|
| /linux/Documentation/translations/zh_CN/core-api/ |
| H A D | symbol-namespaces.rst | 112 供了一个脚本和make目标来修复丢失的导入。修复丢失的导入可以用:: 114 $ make nsdeps 119 - ``make`` 121 - 运行 ``make nsdeps``将导入添加到正确的代码位置。 123 对于引入命名空间的子系统维护者来说,其步骤非常相似。同样,make nsdeps最终将 127 - `make e`(最好是用allmodconfig来覆盖所有的内核模块)。 133 $ make -C <path_to_kernel_src> M=$PWD nsdeps
|
| /linux/tools/tracing/rtla/ |
| H A D | README.txt | 29 $ make 30 $ sudo make install 34 $ make 35 $ sudo make install 38 $ make 39 $ sudo make install 41 $ make 42 $ sudo make install
|
| /linux/tools/perf/ |
| H A D | Makefile | 61 @printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' $(BUILD_TYPE) build\n' 76 $(make) 96 $(make) -j1 109 …@$(MAKE) SHUF=1 -f tests/make REUSE_FEATURES_DUMP=1 MK=Makefile SET_PARALLEL=1 --no-print-director… 112 @$(MAKE) -f tests/make REUSE_FEATURES_DUMP=1 MK=Makefile SET_PARALLEL=1 --no-print-directory out 119 $(make)
|
| /linux/tools/power/cpupower/ |
| H A D | README | 38 $ make 40 The output directory for the 'make' command is the current directory and 47 $ sudo make install 49 'make install' command puts targets to default system dirs: 73 There are 2 make's command-line variables 'O' and 'DESTDIR' that setup 82 $ make O=<your_custom_build_catalog> 85 $ make O=/home/hedin/prj/cpupower/build 90 $ make O=<your_custom_build_catalog> DESTDIR=<your_custom_install_catalog> 93 $ make O=/home/hedin/prj/cpupower/build DESTDIR=/home/hedin/prj/cpupower \ 121 If you look at the table for the default 'make' output dirs you will [all …]
|
| /linux/tools/verification/rv/ |
| H A D | README.txt | 24 $ make 25 $ sudo make install 29 $ make 30 $ sudo make install 33 $ make 34 $ sudo make install
|
| /linux/scripts/package/ |
| H A D | kernel.spec | 3 %{!?make: %define make make} 21 BuildRequires: gcc make openssl openssl-devel perl python3 rsync 98 %{make} %{makeflags} KERNELRELEASE=%{KERNELRELEASE} KBUILD_BUILD_VERSION=%{release} 102 cp $(%{make} %{makeflags} -s image_name) %{buildroot}/lib/modules/%{KERNELRELEASE}/vmlinuz 104 %{make} %{makeflags} INSTALL_MOD_PATH=%{buildroot} %{?install_mod_strip:INSTALL_MOD_STRIP=1} DEPMOD… 105 %{make} %{makeflags} INSTALL_HDR_PATH=%{buildroot}/usr headers_install 108 if %{make} %{makeflags} run-command KBUILD_RUN_COMMAND='test -d ${srctree}/arch/${SRCARCH}/boot/dts… 109 %{make} %{makeflags} INSTALL_DTBS_PATH=%{buildroot}/lib/modules/%{KERNELRELEASE}/dtb dtbs_install 113 %{make} %{makeflags} run-command KBUILD_RUN_COMMAND='${srctree}/scripts/package/install-extmod-buil…
|
| /linux/Documentation/translations/zh_CN/dev-tools/ |
| H A D | sparse.rst | 95 make 96 make install 103 用"make C=1"命令来编译内核,会对所有重新编译的 C 文件使用 sparse 工具。 104 或者使用"make C=2"命令,无论文件是否被重新编译都会对其使用 sparse 工具。 107 make 的可选变量 CHECKFLAGS 可以用来向 sparse 工具传递参数。编译系统会自
|
| /linux/tools/perf/Documentation/ |
| H A D | Build.txt | 54 $ make DESTDIR=/usr 55 $ make DESTDIR=/usr install 61 $ make DEBUG=1 EXTRA_CFLAGS='-fno-omit-frame-pointer -fsanitize=address' 70 $ make DEBUG=1 EXTRA_CFLAGS='-fno-omit-frame-pointer -fsanitize=undefined' 85 $ make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -C tools/perf 89 $ make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \ 97 make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -C tools/perf 110 $ HOSTCC=clang CC=clang CXX=clang++ make -C tools/perf 116 make -C tools/perf
|
| /linux/Documentation/arch/powerpc/ |
| H A D | mpc52xx.rst | 13 # make lite5200_defconfig 14 # make uImage 25 # make lite5200_defconfig 27 # make zImage.initrd 28 # make
|
| /linux/Documentation/translations/zh_TW/dev-tools/ |
| H A D | sparse.rst | 77 make 78 make install 85 用"make C=1"命令來編譯內核,會對所有重新編譯的 C 文件使用 sparse 工具。 86 或者使用"make C=2"命令,無論文件是否被重新編譯都會對其使用 sparse 工具。 89 make 的可選變量 CHECKFLAGS 可以用來向 sparse 工具傳遞參數。編譯系統會自
|
| /linux/Documentation/dev-tools/ |
| H A D | coccinelle.rst | 47 make 51 sudo make install 106 To make a report for every semantic patch, run the following command:: 108 make coccicheck MODE=report 112 make coccicheck MODE=patch 128 make coccicheck MODE=report V=1 131 /dev/null. This can make coccicheck output difficult to read and understand. 135 make coccicheck MODE=report DEBUG_FILE="cocci.log" 140 make coccicheck MODE=report DEBUG_FILE="cocci-$(date -Iseconds).log" 148 make coccicheck MODE=report J=4 [all …]
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | test_bpftool_build.sh | 10 echo -e "\t\t-j <n>:\tPass -j flag to 'make'." 51 echo -e "command: make -s $* >/dev/null" 52 make $J -s $* >/dev/null 65 make -s clean 78 echo -e "command: make -s $ARGS ${@: -1}=$TMPDIR/ >/dev/null" 79 make $J -s $ARGS ${@: -1}=$TMPDIR/ >/dev/null 98 echo -e "skip: make tools/bpf OUTPUT=<dir> (not supported)\n" 102 echo -e "skip: make tools/bpf (no .config found)\n" 103 echo -e "skip: make tools/bpf OUTPUT=<dir> (not supported)\n" 104 echo -e "skip: make tool [all...] |
| /linux/tools/testing/selftests/arm64/ |
| H A D | README | 11 $ make TARGETS=arm64 kselftest-clean 12 $ make TARGETS=arm64 kselftest 16 $ make -C tools/testing/selftests TARGETS=arm64 \ 21 $ make -C tools/testing/selftests TARGETS=arm64 ARM64_SUBTARGETS="tags signal" \
|
| /linux/tools/testing/selftests/riscv/ |
| H A D | README | 10 $ make TARGETS=riscv kselftest-clean 11 $ make TARGETS=riscv kselftest 15 $ make -C tools/testing/selftests TARGETS=riscv \ 20 $ make -C tools/testing/selftests TARGETS=riscv RISCV_SUBTARGETS="mm vector" \
|
| /linux/tools/power/cpupower/bindings/python/ |
| H A D | README | 9 running `make install-lib` within the cpupower directory. This installs the 10 libcpupower.so file and symlinks needed. Otherwise, please make sure a symlink 35 Build the object files for libcpupower by running make in the cpupower 40 $ make 74 sudo make install 76 sudo make uninstall
|
| /linux/Documentation/translations/zh_CN/doc-guide/ |
| H A D | sphinx.rst | 14 换成漂亮的文档。使用 ``make htmldocs`` 或 ``make pdfdocs`` 命令即可构建HTML 116 生成文档的常用方法是运行 ``make htmldocs`` 或 ``make pdfdocs`` 。还有其它可用 117 的格式:请参阅 ``make help`` 的文档部分。生成的文档放在 ``Documentation/output`` 125 要传递额外的选项给Sphinx,可以使用make变量 ``SPHINXOPTS`` 。例如,使用 126 ``make SPHINXOPTS=-v htmldocs`` 获得更详细的输出。 129 要删除生成的文档,请运行 ``make cleandocs`` 。
|
| /linux/tools/perf/tests/ |
| H A D | make | 7 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile 8 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1 12 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile $@ 57 # we need some IS_(32/64) flag to make this generic 67 # standard single make variable specified 368 @echo "- make -C <kernelsrc> $(PARALLEL_OPT) $(K_O_OPT) tools/perf" 370 (make -C ../.. $(PARALLEL_OPT) $(K_O_OPT) tools/perf) > $@ 2>&1 && \ 374 @echo "- make -C <kernelsrc>/tools $(PARALLEL_OPT) $(K_O_OPT) perf" 376 (make -C ../../tools $(PARALLEL_OPT) $(K_O_OPT) perf) > $@ 2>&1 && \ 380 @echo "- make -C lib"; [all …]
|
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | torture.sh | 108 echo " --kcsan-kmake-arg kernel-make-arguments" 248 checkarg --kcsan-kmake-arg "(kernel make arguments)" $# "$2" '.*' '^error$' 417 # make allmodconfig 424 echo " --- make clean" | tee $amcdir/log > "$amcdir/Make.out" 2>&1 425 make -j$MAKE_ALLOTED_CPUS clean >> "$amcdir/Make.out" 2>&1 427 buildphase='"make clean"' 430 echo " --- make allmodconfig" | tee -a $amcdir/log >> "$amcdir/Make.out" 2>&1 432 make -j$MAKE_ALLOTED_CPUS allmodconfig >> "$amcdir/Make.out" 2>&1 434 buildphase='"make allmodconfig"' 438 echo " --- make " | te [all...] |
| /linux/scripts/package/debian/ |
| H A D | rules | 1 #!/usr/bin/make -f 26 make-opts = ARCH=$(ARCH) KERNELRELEASE=$(KERNELRELEASE) \ 54 $(Q)+$(MAKE) $(make-opts) run-command KBUILD_RUN_COMMAND='+$$(srctree)/scripts/package/builddeb $(package)' 79 $(Q)$(MAKE) $(make-opts) olddefconfig 80 $(Q)$(MAKE) $(make-opts) $(if $(filter um,$(ARCH)),,headers) all 89 # directly. Run 'dpkg-architecture --print-set --print-format=make' to 95 $(Q)dpkg-architecture -a$$(cat debian/arch) --print-set --print-format=make > $@.tmp
|
| /linux/Documentation/bpf/libbpf/ |
| H A D | libbpf_build.rst | 12 setting NO_PKG_CONFIG=1 when calling make. 19 $ make 28 $ BUILD_STATIC_ONLY=y OBJDIR=build DESTDIR=root make install 37 $ PKG_CONFIG_PATH=/build/root/lib64/pkgconfig DESTDIR=/build/root make
|
| /linux/security/apparmor/ |
| H A D | Makefile | 106 $(call cmd,make-caps) 109 $(call cmd,make-rlim) 113 $(call cmd,make-af) 114 $(call cmd,make-sock)
|