diff options
author | Ulf Magnusson | 2018-07-05 12:33:07 +0900 |
---|---|---|
committer | Masahiro Yamada | 2018-07-06 22:04:02 +0900 |
commit | bd412d81b7ea4cfa265e3d2309a166181ec7bdab (patch) | |
tree | 5021c1d25311cdc191150fffef33082851f2139c | |
parent | 48f6e3cf5bc6dd0ee00405342ff310c3b1fedb35 (diff) |
kbuild: .PHONY is not a variable, but PHONY is
.PHONY is a target, not a variable.
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1717,6 +1717,6 @@ endif # skip-makefile PHONY += FORCE FORCE: -# Declare the contents of the .PHONY variable as phony. We keep that +# Declare the contents of the PHONY variable as phony. We keep that # information in a variable so we can use it in if_changed and friends. .PHONY: $(PHONY) |