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.
17 The build framework consists of 2 Makefiles:
20 Makefile.build
23 'Makefile.build' file is the makefile used from the outside. It's
26 $ make -f tools/build/Makefile srctree=$(KSRC) dir=$(DIR) obj=$(OBJECT)
32 OBJECT - is the name of the build object
45 the build to nested directories.
56 Out of which you build the 'ex' binary ' and the 'libex.a' library:
61 The build framework does not create the 'ex' and 'libex.a' binaries for you, it
80 $ make -f tools/build/Makefile.build dir=. obj=ex
81 $ make -f tools/build/Makefile.build dir=. obj=libex
95 You can check the 'ex' example in 'tools/build/tests/ex' for more details.
100 The build framework provides standard compilation rules to handle .S and .c
112 CFLAGS_gtk += '...' - alters CFLAGS for gtk build object
135 It's possible to build single object file by choice, like: