diff options
author | Sam Ravnborg <sam@neptun.(none)> | 2007-09-30 14:14:58 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@neptun.(none)> | 2007-10-12 15:20:32 -0400 |
commit | 5e54d5e5fbc1f7237930af8466caf3cefd13b9bd (patch) | |
tree | 2a290f82e06c4f56ae46fcdbe8499d0846468bf7 /Documentation/kbuild | |
parent | a9af33052cee365ee17c03c167b61780a08f4acd (diff) |
kbuild: kill EXTRA_ARFLAGS
EXTRA_ARFLAGS have never been used so no need to carry
around on this.
A google search did not reveal any external module
using this either.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/makefiles.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 3c7ea39fc098..54bbfd37f157 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
@@ -276,7 +276,7 @@ more details, with real examples. | |||
276 | 276 | ||
277 | --- 3.7 Compilation flags | 277 | --- 3.7 Compilation flags |
278 | 278 | ||
279 | EXTRA_CFLAGS, EXTRA_AFLAGS, EXTRA_LDFLAGS, EXTRA_ARFLAGS | 279 | EXTRA_CFLAGS, EXTRA_AFLAGS, EXTRA_LDFLAGS |
280 | 280 | ||
281 | All the EXTRA_ variables apply only to the kbuild makefile | 281 | All the EXTRA_ variables apply only to the kbuild makefile |
282 | where they are assigned. The EXTRA_ variables apply to all | 282 | where they are assigned. The EXTRA_ variables apply to all |
@@ -305,8 +305,7 @@ more details, with real examples. | |||
305 | EXTRA_AFLAGS := -traditional | 305 | EXTRA_AFLAGS := -traditional |
306 | 306 | ||
307 | 307 | ||
308 | $(EXTRA_LDFLAGS) and $(EXTRA_ARFLAGS) are similar strings for | 308 | $(EXTRA_LDFLAGS) is a string for per-directory options to $(LD). |
309 | per-directory options to $(LD) and $(AR). | ||
310 | 309 | ||
311 | Example: | 310 | Example: |
312 | #arch/m68k/fpsp040/Makefile | 311 | #arch/m68k/fpsp040/Makefile |