diff options
| author | Sam Ravnborg <sam@ravnborg.org> | 2009-04-18 23:51:08 +0200 | 
|---|---|---|
| committer | Sam Ravnborg <sam@ravnborg.org> | 2009-04-19 11:12:06 +0200 | 
| commit | f14875a3e0cc35d7dbe15ee39763a6ae922e7034 (patch) | |
| tree | fc663d3df49fe08968bffe8708f8967054218cef | |
| parent | ff54250a0ebab7f90a5f848a0ba63f999830c872 (diff) | |
| download | linux-f14875a3e0cc35d7dbe15ee39763a6ae922e7034.tar.bz2 | |
kbuild: support include/generated
We need a location for generated files.
Today they are spread over several places and bringing them
together to a common place makes it obvious hat is generated
and what isreal files.
Al Viro originally suggested: include/gen
Linus suggested to spell it out.
This patch implement support for
    include/generated
All files in include/generated are ignored by git.
include/generated is removed during "make mrproper".
With this we are ready to implement support for include/generated
in the various architctures and in the base kernel.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 2 | 
2 files changed, 2 insertions, 1 deletions
| diff --git a/.gitignore b/.gitignore index 869e1a3b64b6..51bd99d6a260 100644 --- a/.gitignore +++ b/.gitignore @@ -49,6 +49,7 @@ include/linux/compile.h  include/linux/version.h  include/linux/utsrelease.h  include/linux/bounds.h +include/generated  # stgit generated dirs  patches-* @@ -1200,7 +1200,7 @@ CLEAN_FILES +=	vmlinux System.map \                  .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map  # Directories & files removed with 'make mrproper' -MRPROPER_DIRS  += include/config include2 usr/include +MRPROPER_DIRS  += include/config include2 usr/include include/generated  MRPROPER_FILES += .config .config.old include/asm .version .old_version \                    include/linux/autoconf.h include/linux/version.h      \                    include/linux/utsrelease.h                            \ |