We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bde35a2 + 3c80fcb commit 14cc08dCopy full SHA for 14cc08d
Makefile
@@ -2699,12 +2699,14 @@ FIND_SOURCE_FILES = ( \
2699
)
2700
2701
$(ETAGS_TARGET): FORCE
2702
- $(RM) $(ETAGS_TARGET)
2703
- $(FIND_SOURCE_FILES) | xargs etags -a -o $(ETAGS_TARGET)
+ $(QUIET_GEN)$(RM) "$(ETAGS_TARGET)+" && \
+ $(FIND_SOURCE_FILES) | xargs etags -a -o "$(ETAGS_TARGET)+" && \
2704
+ mv "$(ETAGS_TARGET)+" "$(ETAGS_TARGET)"
2705
2706
tags: FORCE
- $(RM) tags
2707
- $(FIND_SOURCE_FILES) | xargs ctags -a
+ $(QUIET_GEN)$(RM) tags+ && \
2708
+ $(FIND_SOURCE_FILES) | xargs ctags -a -o tags+ && \
2709
+ mv tags+ tags
2710
2711
cscope:
2712
$(RM) cscope*
0 commit comments