Skip to content

Commit 922f8bb

Browse files
avargitster
authored andcommitted
Makefile: move ".PHONY: cscope" near its target
Move the ".PHONY: cscope" rule to live alongside the "cscope" target itself, not to be all the way near the bottom where we define the "FORCE" rule. That line was last modified in 2f76919 (MinGW: avoid collisions between "tags" and "TAGS", 2010-09-28). Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ebf3c04 commit 922f8bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2737,6 +2737,7 @@ tags: FORCE
27372737
$(FIND_SOURCE_FILES) | xargs ctags -a -o tags+ && \
27382738
mv tags+ tags
27392739

2740+
.PHONY: cscope
27402741
cscope:
27412742
$(RM) cscope*
27422743
$(FIND_SOURCE_FILES) | xargs cscope -b
@@ -3245,7 +3246,7 @@ endif
32453246

32463247
.PHONY: all install profile-clean cocciclean clean strip
32473248
.PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
3248-
.PHONY: FORCE cscope
3249+
.PHONY: FORCE
32493250

32503251
### Check documentation
32513252
#

0 commit comments

Comments
 (0)