diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-04-08 06:51:25 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2013-04-08 07:00:29 -0400 |
commit | ff4eb04c88588118a4c0f0b8308c9c475f3bc9fe (patch) | |
tree | 456165172e19579a28016f5748f6af9643e0e145 /Documentation/kbuild | |
parent | 987d0c8e9ded8d43843d602b6ab890d14745690f (diff) |
doc: change example to existing Makefile fragment
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/makefiles.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 5198b742fde1..020bb67586ef 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
@@ -921,8 +921,9 @@ When kbuild executes, the following steps are followed (roughly): | |||
921 | Often, the KBUILD_CFLAGS variable depends on the configuration. | 921 | Often, the KBUILD_CFLAGS variable depends on the configuration. |
922 | 922 | ||
923 | Example: | 923 | Example: |
924 | #arch/x86/Makefile | 924 | #arch/x86/boot/compressed/Makefile |
925 | cflags-$(CONFIG_M386) += -march=i386 | 925 | cflags-$(CONFIG_X86_32) := -march=i386 |
926 | cflags-$(CONFIG_X86_64) := -mcmodel=small | ||
926 | KBUILD_CFLAGS += $(cflags-y) | 927 | KBUILD_CFLAGS += $(cflags-y) |
927 | 928 | ||
928 | Many arch Makefiles dynamically run the target C compiler to | 929 | Many arch Makefiles dynamically run the target C compiler to |