Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 607b30fc authored by Michal Marek's avatar Michal Marek
Browse files

kbuild: Create output directory in Makefile.modbuiltin

parent 2da30e70
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@ __modbuiltin:

include scripts/Kbuild.include

ifneq ($(KBUILD_SRC),)
# Create output directory if not already present
_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
endif

# The filename Kbuild has precedence over Makefile
kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
kbuild-file := $(if $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Kbuild,$(kbuild-dir)/Makefile)