diff options
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/makefiles.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index ab0a984530d8..ec9ae6708691 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
@@ -45,7 +45,7 @@ This document describes the Linux kernel Makefiles. | |||
45 | 45 | ||
46 | === 7 Kbuild syntax for exported headers | 46 | === 7 Kbuild syntax for exported headers |
47 | --- 7.1 header-y | 47 | --- 7.1 header-y |
48 | --- 7.2 objhdr-y | 48 | --- 7.2 genhdr-y |
49 | --- 7.3 destination-y | 49 | --- 7.3 destination-y |
50 | --- 7.4 generic-y | 50 | --- 7.4 generic-y |
51 | 51 | ||
@@ -1282,15 +1282,15 @@ See subsequent chapter for the syntax of the Kbuild file. | |||
1282 | 1282 | ||
1283 | Subdirectories are visited before their parent directories. | 1283 | Subdirectories are visited before their parent directories. |
1284 | 1284 | ||
1285 | --- 7.2 objhdr-y | 1285 | --- 7.2 genhdr-y |
1286 | 1286 | ||
1287 | objhdr-y specifies generated files to be exported. | 1287 | genhdr-y specifies generated files to be exported. |
1288 | Generated files are special as they need to be looked | 1288 | Generated files are special as they need to be looked |
1289 | up in another directory when doing 'make O=...' builds. | 1289 | up in another directory when doing 'make O=...' builds. |
1290 | 1290 | ||
1291 | Example: | 1291 | Example: |
1292 | #include/linux/Kbuild | 1292 | #include/linux/Kbuild |
1293 | objhdr-y += version.h | 1293 | genhdr-y += version.h |
1294 | 1294 | ||
1295 | --- 7.3 destination-y | 1295 | --- 7.3 destination-y |
1296 | 1296 | ||