diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-02-18 04:48:20 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@uranus.ravnborg.org> | 2008-04-25 14:18:48 -0400 |
commit | 3156fd0529b5216f4f444f4a7752b82dc1bd99c0 (patch) | |
tree | 88170f6bd4cfc9acf018a288f9d669da4a582a5b /scripts/Makefile.host | |
parent | eed7d2798ce7b78547106d0c3557a88251b413d0 (diff) |
kbuild: fix some minor typoes
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/Makefile.host')
-rw-r--r-- | scripts/Makefile.host | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/Makefile.host b/scripts/Makefile.host index 6943a7a5bb98..1ac414fd5030 100644 --- a/scripts/Makefile.host +++ b/scripts/Makefile.host | |||
@@ -3,9 +3,9 @@ | |||
3 | # Binaries are used during the compilation of the kernel, for example | 3 | # Binaries are used during the compilation of the kernel, for example |
4 | # to preprocess a data file. | 4 | # to preprocess a data file. |
5 | # | 5 | # |
6 | # Both C and C++ is supported, but preferred language is C for such utilities. | 6 | # Both C and C++ are supported, but preferred language is C for such utilities. |
7 | # | 7 | # |
8 | # Samle syntax (see Documentation/kbuild/makefile.txt for reference) | 8 | # Sample syntax (see Documentation/kbuild/makefiles.txt for reference) |
9 | # hostprogs-y := bin2hex | 9 | # hostprogs-y := bin2hex |
10 | # Will compile bin2hex.c and create an executable named bin2hex | 10 | # Will compile bin2hex.c and create an executable named bin2hex |
11 | # | 11 | # |
@@ -23,10 +23,10 @@ | |||
23 | # hostprogs-y := conf | 23 | # hostprogs-y := conf |
24 | # conf-objs := conf.o libkconfig.so | 24 | # conf-objs := conf.o libkconfig.so |
25 | # libkconfig-objs := expr.o type.o | 25 | # libkconfig-objs := expr.o type.o |
26 | # Will create a shared library named libkconfig.so that consist of | 26 | # Will create a shared library named libkconfig.so that consists of |
27 | # expr.o and type.o (they are both compiled as C code and the object file | 27 | # expr.o and type.o (they are both compiled as C code and the object files |
28 | # are made as position independent code). | 28 | # are made as position independent code). |
29 | # conf.c is compiled as a c program, and conf.o is linked together with | 29 | # conf.c is compiled as a C program, and conf.o is linked together with |
30 | # libkconfig.so as the executable conf. | 30 | # libkconfig.so as the executable conf. |
31 | # Note: Shared libraries consisting of C++ files are not supported | 31 | # Note: Shared libraries consisting of C++ files are not supported |
32 | 32 | ||
@@ -61,7 +61,7 @@ host-cobjs := $(filter-out %.so,$(host-cobjs)) | |||
61 | host-cshobjs := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs)))) | 61 | host-cshobjs := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs)))) |
62 | 62 | ||
63 | # output directory for programs/.o files | 63 | # output directory for programs/.o files |
64 | # hostprogs-y := tools/build may have been specified. Retreive directory | 64 | # hostprogs-y := tools/build may have been specified. Retrieve directory |
65 | host-objdirs := $(foreach f,$(__hostprogs), $(if $(dir $(f)),$(dir $(f)))) | 65 | host-objdirs := $(foreach f,$(__hostprogs), $(if $(dir $(f)),$(dir $(f)))) |
66 | # directory of .o files from prog-objs notation | 66 | # directory of .o files from prog-objs notation |
67 | host-objdirs += $(foreach f,$(host-cmulti), \ | 67 | host-objdirs += $(foreach f,$(host-cmulti), \ |