FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
linux/scripts/basic/Makefile at master · shittydeveloper/linux · GitHub
shittydeveloper
/
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
/
basic
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
15 lines (13 loc) · 671 Bytes
Breadcrumbs
linux
/
scripts
/
basic
/
Makefile
Copy path
File metadata and controls
15 lines (13 loc) · 671 Bytes
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
#
##
#
Makefile.basic lists the most basic programs used during the build process.
#
The programs listed herein are what are needed to do the basic stuff,
#
such as fix file dependencies.
#
This initial step is needed to avoid files to be recompiled
#
when kernel configuration changes (which is what happens when
#
.config is included by main Makefile.
#
---------------------------------------------------------------------------
#
fixdep: Used to generate dependency information during build process
hostprogs-y
:= fixdep
always
:=
$(
hostprogs-y
)
#
fixdep is needed to compile other host programs
$(
addprefix
$(
obj
)
/,
$(
filter-out
fixdep,
$(
always
)
)
)
:
$(
obj
)
/fixdep
Back
|
FazBrowse Home
|
New Git URL