Skip to content

Instantly share code, notes, and snippets.

@wb14123
Created February 2, 2013 01:48
Show Gist options
  • Save wb14123/4695624 to your computer and use it in GitHub Desktop.
Save wb14123/4695624 to your computer and use it in GitHub Desktop.
How Kernel's Makefile Specify Output Directory
ifeq ($(KBUILD_SRC),)
ifeq ("$(origin O)", "command line")
KBUILD_OUTPUT := $(O)
endif
ifneq ($(KBUILD_OUTPUT),)
$(filter-out submake $(CURDIR)/Makefile, $(MAKECMDGOALS)): sub-make
@:
sub-make:
make -C $(KBUILD_OUTPUT) -f /home/wangbin/maketest/Makefile \
KBUILD_SRC=$(PWD) \
$(MAKECMDGOALS)
@echo " sub-make KBUILD_OUTPUT: $(KBUILD_OUTPUT)"
skip-makefile := 1
endif #end KBUILD_OUTPUT
endif #end KBUILD_SRC
ifeq ($(skip-makefile),)
target1:
touch target1
@echo "target KBUILD_OUTPUT: $(KBUILD_OUTPUT)"
target2:
touch target2
@echo "target KBUILD_OUTPUT: $(KBUILD_OUTPUT)"
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment