diff options
author | Peter Foley <pefoley2@verizon.net> | 2011-04-27 01:15:01 +0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-05-12 18:30:40 +0400 |
commit | 279f3dd3569d08226f8b8e41704d65e8b679d3d7 (patch) | |
tree | 9c8c64f8494200a87b363f43c068003e10f2962a | |
parent | 6088e9ffa29a92e7b80fdba44929f3225c4c0357 (diff) | |
download | linux-279f3dd3569d08226f8b8e41704d65e8b679d3d7.tar.xz |
kbuild: add targets to PHONY
This patch adds some targets to PHONY so they are built even if a file
with the same name exists.
Signed-off-by: Peter Foley <pefoley2@verizon.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1392,6 +1392,8 @@ tags TAGS cscope gtags: FORCE # Scripts to check various things for consistency # --------------------------------------------------------------------------- +PHONY += includecheck versioncheck coccicheck namespacecheck export_report + includecheck: find * $(RCS_FIND_IGNORE) \ -name '*.[hcS]' -type f -print | sort \ |