Lines Matching defs:KBUILD_OUTPUT
123 # 2) Set KBUILD_OUTPUT
124 # Set the environment variable KBUILD_OUTPUT to point to the output directory.
125 # export KBUILD_OUTPUT=dir/to/store/output/files/; make
127 # The O= assignment takes precedence over the KBUILD_OUTPUT environment
132 KBUILD_OUTPUT := $(O)
135 ifneq ($(KBUILD_OUTPUT),)
138 abs_objtree := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && pwd)
140 $(error failed to create output directory "$(KBUILD_OUTPUT)"))
146 endif # ifneq ($(KBUILD_OUTPUT),)