diff options
Diffstat (limited to 'Documentation/kbuild/makefiles.txt')
-rw-r--r-- | Documentation/kbuild/makefiles.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 5080fec34609..b817e6cefb77 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
@@ -1025,6 +1025,16 @@ When kbuild executes, the following steps are followed (roughly): | |||
1025 | i.e. compilable as standalone units. If CONFIG_HEADER_TEST is enabled, | 1025 | i.e. compilable as standalone units. If CONFIG_HEADER_TEST is enabled, |
1026 | this builds them as part of extra-y. | 1026 | this builds them as part of extra-y. |
1027 | 1027 | ||
1028 | header-test-pattern-y | ||
1029 | |||
1030 | This works as a weaker version of header-test-y, and accepts wildcard | ||
1031 | patterns. The typical usage is: | ||
1032 | |||
1033 | header-test-pattern-y += *.h | ||
1034 | |||
1035 | This specifies all the files that matches to '*.h' in the current | ||
1036 | directory, but the files in 'header-test-' are excluded. | ||
1037 | |||
1028 | --- 6.7 Commands useful for building a boot image | 1038 | --- 6.7 Commands useful for building a boot image |
1029 | 1039 | ||
1030 | Kbuild provides a few macros that are useful when building a | 1040 | Kbuild provides a few macros that are useful when building a |