diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-01-20 00:08:08 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-03-14 12:44:17 -0400 |
commit | bfdfaeae500a3b194b73b01e92a8034791a58b7f (patch) | |
tree | fed2f9d9416b87facfbfc5346db6cb976f0ee685 | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
kbuild: specify build_docproc as a phony target
PHONY target is more suitable for "build_docproc" target.
Because PHONY targets are always executed, they do not
have to take FORCE as a prerequisite.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
-rw-r--r-- | scripts/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 01e7adb838d9..1d07860f6c42 100644 --- a/scripts/Makefile +++ b/scripts/Makefile | |||
@@ -27,10 +27,10 @@ always := $(hostprogs-y) $(hostprogs-m) | |||
27 | hostprogs-y += unifdef docproc | 27 | hostprogs-y += unifdef docproc |
28 | 28 | ||
29 | # These targets are used internally to avoid "is up to date" messages | 29 | # These targets are used internally to avoid "is up to date" messages |
30 | PHONY += build_unifdef | 30 | PHONY += build_unifdef build_docproc |
31 | build_unifdef: scripts/unifdef FORCE | 31 | build_unifdef: $(obj)/unifdef |
32 | @: | 32 | @: |
33 | build_docproc: scripts/docproc FORCE | 33 | build_docproc: $(obj)/docproc |
34 | @: | 34 | @: |
35 | 35 | ||
36 | subdir-$(CONFIG_MODVERSIONS) += genksyms | 36 | subdir-$(CONFIG_MODVERSIONS) += genksyms |