FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
linux/scripts/Makefile at master · rbotta/linux · GitHub
rbotta
/
linux
Public
forked from
torvalds/linux
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
linux
/
scripts
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (34 loc) · 1.43 KB
Breadcrumbs
linux
/
scripts
/
Makefile
Copy path
File metadata and controls
42 lines (34 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
##
#
scripts contains sources for various helper programs used throughout
#
the kernel for the build process.
#
---------------------------------------------------------------------------
#
kallsyms: Find all symbols in vmlinux
#
pnmttologo: Convert pnm files to logo files
#
conmakehash: Create chartable
#
conmakehash: Create arrays for initializing the kernel console tables
#
docproc: Used in Documentation/DocBook
HOST_EXTRACFLAGS
+= -I
$(
srctree
)
/tools/include
hostprogs-$(CONFIG_KALLSYMS)
+= kallsyms
hostprogs-$(CONFIG_LOGO)
+= pnmtologo
hostprogs-$(CONFIG_VT)
+= conmakehash
hostprogs-$(CONFIG_IKCONFIG)
+= bin2c
hostprogs-$(BUILD_C_RECORDMCOUNT)
+= recordmcount
hostprogs-$(CONFIG_BUILDTIME_EXTABLE_SORT)
+= sortextable
hostprogs-$(CONFIG_ASN1)
+= asn1_compiler
HOSTCFLAGS_sortextable.o
= -I
$(
srctree
)
/tools/include
HOSTCFLAGS_asn1_compiler.o
= -I
$(
srctree
)
/include
always
:=
$(
hostprogs-y
)
$(
hostprogs-m
)
#
The following hostprogs-y programs are only build on demand
hostprogs-y
+= unifdef docproc
#
These targets are used internally to avoid "is up to date" messages
PHONY
+= build_unifdef
build_unifdef
: scripts/unifdef FORCE
@:
build_docproc
: scripts/docproc FORCE
@:
subdir-$(CONFIG_MODVERSIONS)
+= genksyms
subdir-y
+= mod
subdir-$(CONFIG_SECURITY_SELINUX)
+= selinux
subdir-$(CONFIG_DTC)
+= dtc
#
Let clean descend into subdirs
subdir-
+= basic kconfig package selinux
Back
|
FazBrowse Home
|
New Git URL