Home
last modified time | relevance | path

Searched full:make (Results 1 – 25 of 7207) sorted by relevance

12345678910>>...289

/kernel/linux/linux-5.10/samples/bpf/
DREADME.rst23 make -C tools clean
24 make -C samples/bpf clean
25 make clean
29 make defconfig
38 make headers_install
41 level directory, that the make system automatically pickup first.
49 make M=samples/bpf
51 It is also possible to call make from this directory. This will just
52 hide the invocation of make as above.
73 $ make -j $(getconf _NPROCESSORS_ONLN)
[all …]
/kernel/linux/linux-5.10/Documentation/dev-tools/
Dkselftest.rst31 $ make -C tools/testing/selftests
35 $ make -C tools/testing/selftests run_tests
39 $ make kselftest
51 $ make O=/tmp/kselftest kselftest
55 $ export KBUILD_OUTPUT=/tmp/kselftest; make kselftest
61 Kselftest supports "summary" option to make it easier to understand the test
68 $ make summary=1 kselftest
73 You can use the "TARGETS" variable on the make command line to specify
78 $ make -C tools/testing/selftests TARGETS=ptrace run_tests
82 $ make TARGETS="size timers" kselftest
[all …]
Dcoccinelle.rst47 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
136 make coccicheck MODE=report J=4
148 value is propagated back, and the return value of the ``make coccicheck``
154 The optional make variable COCCI can be used to check a single
160 make coccicheck COCCI=<my_SP.cocci> MODE=patch
[all …]
/kernel/linux/linux-5.10/tools/build/tests/
Drun.sh5 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
20 # use -rR to disable make's builtin rules
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
[all …]
/kernel/linux/linux-4.19/tools/build/tests/
Drun.sh5 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
20 # use -rR to disable make's builtin rules
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
[all …]
/kernel/linux/linux-5.10/Documentation/admin-guide/
DREADME.rst84 the backup files (some-file-name~ or some-file-name.orig), and make sure
107 - Make sure you have no stale .o files and dependencies lying around::
110 make mrproper
131 Using the option ``make O=output/dir`` allows you to specify an alternate
141 make O=/home/name/build/kernel menuconfig
142 make O=/home/name/build/kernel
143 sudo make O=/home/name/build/kernel modules_install install
146 used for all invocations of make.
155 new version with minimal work, use ``make oldconfig``, which will
160 "make config" Plain text interface.
[all …]
/kernel/linux/linux-4.19/Documentation/admin-guide/
DREADME.rst85 the backup files (some-file-name~ or some-file-name.orig), and make sure
108 - Make sure you have no stale .o files and dependencies lying around::
111 make mrproper
132 Using the option ``make O=output/dir`` allows you to specify an alternate
142 make O=/home/name/build/kernel menuconfig
143 make O=/home/name/build/kernel
144 sudo make O=/home/name/build/kernel modules_install install
147 used for all invocations of make.
156 new version with minimal work, use ``make oldconfig``, which will
161 "make config" Plain text interface.
[all …]
/kernel/linux/linux-5.10/tools/perf/
DMakefile7 # you can use the 'make -f Makefile.perf' method to invoke it.
11 # Clear out the built-in rules GNU make defines by default (such as .o targets),
23 # in this system: 'make -j8' on a 8-CPU system, etc.
25 # (To override it, run 'make JOBS=1' and similar.)
55 @printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n'
58 define make macro
59 @$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) O=$(FULL_O) $(SET_DEBUG) $@
70 $(make)
90 $(make) -j1
94 # it also uses only the tests/make targets that don't pollute the source
[all …]
DMakefile.perf105 # When selected, pass LLVM_CONFIG=/path/to/llvm-config to `make' if
161 # Do not use make's built-in rules
168 # because make sets default values, so the simpler ?= approach
204 # the first target in the separate make session not to be
205 # disturbed by any parallel make jobs. Once fixdep is done
223 goals := $(filter-out all sub-make, $(MAKECMDGOALS))
225 $(goals) all: sub-make
227 sub-make: fixdep
229 $(Q)$(MAKE) FIXDEP=1 -f Makefile.perf $(goals)
643 $(Q)$(MAKE) $(build)=perf
[all …]
/kernel/linux/linux-4.19/tools/perf/
DMakefile7 # you can use the 'make -f Makefile.perf' method to invoke it.
11 # Clear out the built-in rules GNU make defines by default (such as .o targets),
23 # in this system: 'make -j8' on a 8-CPU system, etc.
25 # (To override it, run 'make JOBS=1' and similar.)
55 @printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n'
58 define make macro
59 @$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) O=$(FULL_O) $(SET_DEBUG) $@
70 $(make)
90 $(make) -j1
94 # it also uses only the tests/make targets that don't pollute the source
[all …]
DMakefile.perf98 # When selected, pass LLVM_CONFIG=/path/to/llvm-config to `make' if
134 # Do not use make's built-in rules
141 # because make sets default values, so the simpler ?= approach
181 # the first target in the separate make session not to be
182 # disturbed by any parallel make jobs. Once fixdep is done
200 goals := $(filter-out all sub-make, $(MAKECMDGOALS))
202 $(goals) all: sub-make
204 sub-make: fixdep
206 $(Q)$(MAKE) FIXDEP=1 -f Makefile.perf $(goals)
507 $(Q)$(MAKE) $(build)=perf
[all …]
/kernel/linux/linux-4.19/
DMakefile9 # To see a list of typical targets execute "make help"
18 # o Do not use make's built-in rules and variables
20 # o Look for make include files relative to root of kernel src
39 # turn into vmlinux), we will call a sub make in that other dir, and
72 # Use 'make V=1' to see the full commands
89 # If the user is running make -s (silent mode), suppress echoing of
103 # Use "make O=dir/to/store/output/files/"
109 # make
115 # it is set on invocation of make with KBUILD_OUTPUT or O= specified.
118 # OK, Make called in directory where kernel src resides
[all …]
/kernel/linux/linux-4.19/Documentation/dev-tools/
Dkselftest.rst22 $ make -C tools/testing/selftests
26 $ make -C tools/testing/selftests run_tests
30 $ make kselftest
34 Build and run from user specific object directory (make O=dir)::
36 $ make O=/tmp/kselftest kselftest
38 Build and run KBUILD_OUTPUT directory (make KBUILD_OUTPUT=)::
40 $ make KBUILD_OUTPUT=/tmp/kselftest kselftest
42 The above commands run the tests and print pass/fail summary to make it
49 You can use the "TARGETS" variable on the make command line to specify
54 $ make -C tools/testing/selftests TARGETS=ptrace run_tests
[all …]
Dcoccinelle.rst39 make
43 sudo make install
89 To make a report for every semantic patch, run the following command::
91 make coccicheck MODE=report
95 make coccicheck MODE=patch
111 make coccicheck MODE=report V=1
119 make coccicheck MODE=report J=4
131 value is propagated back, the return value of the ``make coccicheck``
137 The optional make variable COCCI can be used to check a single
143 make coccicheck COCCI=<my_SP.cocci> MODE=patch
[all …]
/kernel/linux/linux-5.10/
DMakefile9 # To see a list of typical targets execute "make help"
28 # turn into vmlinux), we will call a sub make in that other dir, and
39 # Do not use make's built-in rules and variables
77 # Use 'make V=1' to see the full commands
94 # If the user is running make -s (silent mode), suppress echoing of
108 # cd /dir/to/store/output/files; make -f /dir/to/kernel/source/Makefile
114 # Use "make O=dir/to/store/output/files/"
118 # export KBUILD_OUTPUT=dir/to/store/output/files/; make
129 # Make's built-in functions such as $(abspath ...), $(realpath ...) cannot
145 need-sub-make := 1
[all …]
/kernel/linux/linux-4.19/samples/bpf/
DREADME.rst24 make headers_install
27 level directory, that the make system automatically pickup first.
35 make samples/bpf/
39 It is also possible to call make from this directory. This will just
40 hide the the invocation of make as above with the appended "/".
61 $ make -j $(getconf _NPROCESSORS_ONLN)
63 It is also possible to point make to the newly compiled 'llc' or
64 'clang' command via redefining LLC or CLANG on the make command line::
66 make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang
71 environment variables before calling make. This will direct make to build
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/
DMakefile72 # Run "make quicktest=1 run_tests" or
73 # "make quicktest=1 kselftest" from top level Makefile
86 # built; make will fail if any of the targets cannot be built. If
87 # FORCE_TARGETS is not set (the default), make will succeed if at least one
133 # set default goal to all, so make without a target runs all, even when
140 # dependency in "make kselftest" case. In this case, second level
141 # make inherits builtin-rules which will use the rule generate
150 # Local build cases: "make kselftest", "make -C" - headers are installed
154 $(MAKE) --no-builtin-rules ARCH=$(ARCH) -C $(top_srcdir) headers_install
156 $(MAKE) --no-builtin-rules INSTALL_HDR_PATH=$$BUILD/usr \
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
Dtest_bpftool_build.sh10 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
90 echo -e "command: make -s $* doc >/dev/null"
91 RST2MAN_OPTS="--exit-status=1" make $J -s $* doc
100 make -s doc-clean
115 echo -e "skip: make tools/bpf OUTPUT=<dir> (not supported)\n"
[all …]
/kernel/linux/linux-4.19/Documentation/kbuild/
Dmodules.txt46 complexity, so one only has to type "make" to build the module. This is
59 An alternative is to use the "make" target "modules_prepare." This will
60 make sure the kernel contains the information required. The target
66 executed to make module versioning work.
72 $ make -C <path_to_kernel_src> M=$PWD
79 $ make -C /lib/modules/`uname -r`/build M=$PWD
84 $ make -C /lib/modules/`uname -r`/build M=$PWD modules_install
90 make -C $KDIR M=$PWD
94 "make" will actually change to the specified directory
105 When building an external module, only a subset of the "make"
[all …]
/kernel/linux/linux-5.10/Documentation/kbuild/
Dmodules.rst49 complexity, so one only has to type "make" to build the module. This is
63 An alternative is to use the "make" target "modules_prepare." This will
64 make sure the kernel contains the information required. The target
70 executed to make module versioning work.
77 $ make -C <path_to_kernel_src> M=$PWD
84 $ make -C /lib/modules/`uname -r`/build M=$PWD
89 $ make -C /lib/modules/`uname -r`/build M=$PWD modules_install
96 make -C $KDIR M=$PWD
100 "make" will actually change to the specified directory
112 When building an external module, only a subset of the "make"
[all …]
/kernel/linux/linux-4.19/tools/testing/selftests/
DMakefile51 # Run "make quicktest=1 run_tests" or
52 # "make quicktest=1 kselftest" from top level Makefile
88 make OUTPUT=$$BUILD_TARGET -C $$TARGET;\
94 make OUTPUT=$$BUILD_TARGET -C $$TARGET run_tests;\
100 make OUTPUT=$$BUILD_TARGET -C $$TARGET;\
106 make OUTPUT=$$BUILD_TARGET -C $$TARGET run_full_test;\
112 make OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
116 make -C pstore run_crash
128 make OUTPUT=$$BUILD_TARGET -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install; \
152 make -s --no-print-directory OUTPUT=$$BUILD_TARGET -C $$TARGET emit_tests >> $(ALL_SCRIPT); \
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/rcutorture/bin/
Dconfiginit.sh33 make clean > $resdir/Make.clean 2>&1
35 make $TORTURE_KMAKE_ARG $TORTURE_DEFCONFIG > $resdir/Make.defconfig.out 2>&1
39 yes '' | make $TORTURE_KMAKE_ARG oldconfig > $resdir/Make.oldconfig.out 2> $resdir/Make.oldconfig.e…
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ni_routing/tools/
DMakefile2 # this make file is simply to help autogenerate these files:
12 @echo "\`make csv-files\`"
16 @echo "\`make c-files\`"
20 @echo "\`make csv-blank\`"
24 @echo "\`make clean-partial\`"
26 @echo "\`make clean\`"
28 @echo "\`make everything\`"
70 # The make rules are as follows:
/kernel/linux/linux-4.19/tools/testing/selftests/rcutorture/bin/
Dconfiginit.sh61 make mrproper
62 make $buildloc distclean > $resdir/Make.distclean 2>&1
63 make $buildloc $TORTURE_DEFCONFIG > $resdir/Make.defconfig.out 2>&1
67 yes '' | make $buildloc oldconfig > $resdir/Make.oldconfig.out 2> $resdir/Make.oldconfig.err
/kernel/linux/linux-5.10/Documentation/networking/device_drivers/cable/
Dsb1000.rst26 2. Several PPP scripts which live in /etc/ppp to make connecting via your
57 To make the SB1000 card work, follow these steps:
59 1. Run ``make config``, or ``make menuconfig``, or ``make xconfig``, whichever
61 configuration. Make sure to say "Y" to "Prompt for development drivers"
65 2. **BEFORE** you build the kernel, edit drivers/net/sb1000.c. Make sure
76 IRQ, and DMA settings for all your PnP cards. Make sure none of the settings
86 and do a ``make cmconfig`` and then ``install -c cmconfig /usr/local/sbin``.
87 Don't do ``make install`` because it expects to find all the utilities built
155 /usr/include/linux and /usr/include/asm header files. Make sure you
165 Make sure they don't conflict with any other pieces of hardware first! Then
[all …]

12345678910>>...289