summaryrefslogtreecommitdiff
path: root/scripts/makefile.build
diff options
context:
space:
mode:
authorKacper Fiedorowicz <kf@efab.pl>2026-01-03 18:44:51 +0100
committerKacper Fiedorowicz <kf@efab.pl>2026-01-03 18:44:51 +0100
commit6018e17637264a9561b37be699c3d53b6661de23 (patch)
tree8546c9fa94358e7d6daaad5f11ac53e61be97ad5 /scripts/makefile.build
parentab21f339a33abb1144f3c0f5c4285324e7e88392 (diff)
Add docs and nohup/unlink utitiliesHEADmaster
Diffstat (limited to 'scripts/makefile.build')
-rw-r--r--scripts/makefile.build2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/makefile.build b/scripts/makefile.build
index e4926b3e..bba5da3c 100644
--- a/scripts/makefile.build
+++ b/scripts/makefile.build
@@ -27,7 +27,6 @@ ifneq ($(strip $(bin-y) $(bin-n)),)
bin = $(bin-y)$(bin-n)
endif
-
objects := $(filter %.o,$(obj-y))
subdirs := $(filter %/,$(obj-y)) $(filter %/,$(obj-m))
@@ -39,7 +38,6 @@ collect-obj-y = $(foreach e,$(shell echo 'all:; @echo $$(obj-y)' | \
$(MAKE) -f $(obj)$(1)Kbuild -f - --no-print-directory 2>/dev/null),\
$(if $(filter %/,$(e)),$(addprefix $(e),$(call collect-obj-y,$(1)$(e))),$(e)))
-
ifneq ($(strip $(lib-y) $(lib-m)),)
subdir-objects := $(foreach d,$(subdirs),$(addprefix $(d),$(call collect-obj-y,$(d))))
all-objects := $(objects) $(subdir-objects)