Lines Matching defs:KBUILD_OUTPUT
116 # 2) Set KBUILD_OUTPUT
117 # Set the environment variable KBUILD_OUTPUT to point to the output directory.
118 # export KBUILD_OUTPUT=dir/to/store/output/files/; make
120 # The O= assignment takes precedence over the KBUILD_OUTPUT environment
125 KBUILD_OUTPUT := $(O)
128 ifneq ($(KBUILD_OUTPUT),)
131 abs_objtree := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && pwd)
133 $(error failed to create output directory "$(KBUILD_OUTPUT)"))
139 endif # ifneq ($(KBUILD_OUTPUT),)