Lines Matching refs:build
4 The perf build framework was adopted from the kernel build system, hence the
8 directories to nest for specific target to be build.
10 Unlike the kernel we don't have a single build object 'obj-y' list that where
12 carry a sources list for multiple build objects.
18 The build framework consists of 2 Makefiles:
21 Makefile.build
24 'Makefile.build' file is the makefile used from the outside. It's
27 $ make -f tools/build/Makefile.build srctree=$(KSRC) dir=$(DIR) obj=$(OBJECT)
33 OBJECT - is the name of the build object
47 the build to nested directories.
58 Out of which you build the 'ex' binary ' and the 'libex.a' library:
63 The build framework does not create the 'ex' and 'libex.a' binaries for you, it
83 $ make -f tools/build/Makefile.build dir=. obj=ex
84 $ make -f tools/build/Makefile.build dir=. obj=libex
98 You can check the 'ex' example in 'tools/build/tests/ex' for more details.
104 The tools/build/Makefile.include makefile could be included
109 - build macro definition:
110 build := -f $(srctree)/tools/build/Makefile.build dir=. obj
112 to make it easier to invoke build like:
113 make $(build)=ex
118 It is necessary to build the fixdep helper before invoking the build.
126 The build framework provides standard compilation rules to handle .S and .c
139 CFLAGS_gtk += '...' - alters CFLAGS for gtk build object
162 It's possible to build single object file by choice, like: