diff options
Diffstat (limited to 'scripts/Makefile')
-rw-r--r-- | scripts/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 1b2661712d44..fd0d53d4a234 100644 --- a/scripts/Makefile +++ b/scripts/Makefile | |||
@@ -7,6 +7,7 @@ | |||
7 | # conmakehash: Create chartable | 7 | # conmakehash: Create chartable |
8 | # conmakehash: Create arrays for initializing the kernel console tables | 8 | # conmakehash: Create arrays for initializing the kernel console tables |
9 | # docproc: Used in Documentation/DocBook | 9 | # docproc: Used in Documentation/DocBook |
10 | # check-lc_ctype: Used in Documentation/DocBook | ||
10 | 11 | ||
11 | HOST_EXTRACFLAGS += -I$(srctree)/tools/include | 12 | HOST_EXTRACFLAGS += -I$(srctree)/tools/include |
12 | 13 | ||
@@ -27,14 +28,16 @@ HOSTLOADLIBES_extract-cert = -lcrypto | |||
27 | always := $(hostprogs-y) $(hostprogs-m) | 28 | always := $(hostprogs-y) $(hostprogs-m) |
28 | 29 | ||
29 | # The following hostprogs-y programs are only build on demand | 30 | # The following hostprogs-y programs are only build on demand |
30 | hostprogs-y += unifdef docproc | 31 | hostprogs-y += unifdef docproc check-lc_ctype |
31 | 32 | ||
32 | # These targets are used internally to avoid "is up to date" messages | 33 | # These targets are used internally to avoid "is up to date" messages |
33 | PHONY += build_unifdef build_docproc | 34 | PHONY += build_unifdef build_docproc build_check-lc_ctype |
34 | build_unifdef: $(obj)/unifdef | 35 | build_unifdef: $(obj)/unifdef |
35 | @: | 36 | @: |
36 | build_docproc: $(obj)/docproc | 37 | build_docproc: $(obj)/docproc |
37 | @: | 38 | @: |
39 | build_check-lc_ctype: $(obj)/check-lc_ctype | ||
40 | @: | ||
38 | 41 | ||
39 | subdir-$(CONFIG_MODVERSIONS) += genksyms | 42 | subdir-$(CONFIG_MODVERSIONS) += genksyms |
40 | subdir-y += mod | 43 | subdir-y += mod |