OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
scripts
/
basic
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
.gitignore
13 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
Makefile
715 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bin2c.c
743 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
fixdep.c
10.97 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: Makefile
Close
### # This Makefile 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 hostprogs-$(CONFIG_BUILD_BIN2C) += bin2c always := $(hostprogs-y) # fixdep is needed to compile other host programs $(addprefix $(obj)/,$(filter-out fixdep,$(always))): $(obj)/fixdep