diff options
author | Jike Song <albcamus@gmail.com> | 2009-01-05 01:57:03 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2009-01-07 15:44:21 -0500 |
commit | 4f628248a578585472e19e4cba2c604643af8c6c (patch) | |
tree | c981ad2175b2016aa417230926960b9d7c351021 /Documentation/kbuild | |
parent | 40c8c85a47552bd792b0ad49ddcc45ec18369134 (diff) |
kbuild: reintroduce ALLSOURCE_ARCHS support for tags/cscope
This patch reintroduce the ALLSOURCE_ARCHS support for tags/TAGS/
cscope targets. The Kbuild previously has this feature, but after
moving the targets into scripts/tags.sh, ALLSOURCE_ARCHS disappears.
It's something like this:
$ make ALLSOURCE_ARCHS="x86 mips arm" tags cscope
Signed-off-by: Jike Song <albcamus@gmail.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/kbuild.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/kbuild/kbuild.txt b/Documentation/kbuild/kbuild.txt index 51771847e816..923f9ddee8f6 100644 --- a/Documentation/kbuild/kbuild.txt +++ b/Documentation/kbuild/kbuild.txt | |||
@@ -124,3 +124,10 @@ KBUILD_EXTRA_SYMBOLS | |||
124 | -------------------------------------------------- | 124 | -------------------------------------------------- |
125 | For modules use symbols from another modules. | 125 | For modules use symbols from another modules. |
126 | See more details in modules.txt. | 126 | See more details in modules.txt. |
127 | |||
128 | ALLSOURCE_ARCHS | ||
129 | -------------------------------------------------- | ||
130 | For tags/TAGS/cscope targets, you can specify more than one archs | ||
131 | to be included in the databases, separated by blankspace. e.g. | ||
132 | |||
133 | $ make ALLSOURCE_ARCHS="x86 mips arm" tags | ||