summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVladimir Kondratiev <vladimir.kondratiev@linux.intel.com>2019-02-03 03:48:40 -0500
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-02-19 08:50:32 -0500
commit3a51ff344204e4f23b6ee9c564ac76e207a9e130 (patch)
tree8755af031b33e62f5a46ca1893204330478beecd /Makefile
parent4f1c1008e786cefd9da0ac9ec84192c666719b8c (diff)
kbuild: gitignore output directory
When compiling into output directory using O=, many files created under KBUILD_OUTPUT that git considers as new ones; git clients, ex. "git gui" lists it, and it clutters file list making it difficult to see what was really changed Generate .gitignore in output directory that ignores all its content Signed-off-by: Vladimir Kondratiev <vladimir.kondratiev@linux.intel.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 97ee0be24d52..d487fca342c4 100644
--- a/Makefile
+++ b/Makefile
@@ -483,10 +483,13 @@ PHONY += outputmakefile
483# outputmakefile generates a Makefile in the output directory, if using a 483# outputmakefile generates a Makefile in the output directory, if using a
484# separate output directory. This allows convenient use of make in the 484# separate output directory. This allows convenient use of make in the
485# output directory. 485# output directory.
486# At the same time when output Makefile generated, generate .gitignore to
487# ignore whole output directory
486outputmakefile: 488outputmakefile:
487ifneq ($(KBUILD_SRC),) 489ifneq ($(KBUILD_SRC),)
488 $(Q)ln -fsn $(srctree) source 490 $(Q)ln -fsn $(srctree) source
489 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile $(srctree) 491 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile $(srctree)
492 $(Q){ echo "# this is build directory, ignore it"; echo "*"; } > .gitignore
490endif 493endif
491 494
492ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),) 495ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),)