/
bulatorr
/
kaeru
Обзор
Документация
Войти
/
bulatorr
/
kaeru
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/basic/Makefile
15 строк
671 B
R0rt1z2
kaeru: Initial code upload
17 май 2025, 22:32
17 май 2025, 22:32
c7e455a
Код
Авторство
О чём код?
### # 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