mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-29 13:28:27 +00:00
utils: Add "test/zdtm/lib" directory definitions to tags file
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
This commit is contained in:
parent
beda098364
commit
0dcb780a8f
7
Makefile
7
Makefile
@ -299,22 +299,23 @@ criu-$(tar-name).tar.bz2:
|
|||||||
dist tar: criu-$(tar-name).tar.bz2 ;
|
dist tar: criu-$(tar-name).tar.bz2 ;
|
||||||
.PHONY: dist tar
|
.PHONY: dist tar
|
||||||
|
|
||||||
|
TAGS_FILES_REGEXP := . -name '*.[hcS]' ! -path './.*' \( ! -path './test/*' -o -path './test/zdtm/lib/*' \)
|
||||||
tags:
|
tags:
|
||||||
$(call msg-gen, $@)
|
$(call msg-gen, $@)
|
||||||
$(Q) $(RM) tags
|
$(Q) $(RM) tags
|
||||||
$(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './test/*' -print | xargs $(CTAGS) -a
|
$(Q) $(FIND) $(TAGS_FILES_REGEXP) -print | xargs $(CTAGS) -a
|
||||||
.PHONY: tags
|
.PHONY: tags
|
||||||
|
|
||||||
etags:
|
etags:
|
||||||
$(call msg-gen, $@)
|
$(call msg-gen, $@)
|
||||||
$(Q) $(RM) TAGS
|
$(Q) $(RM) TAGS
|
||||||
$(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './test/*' -print | xargs $(ETAGS) -a
|
$(Q) $(FIND) $(TAGS_FILES_REGEXP) -print | xargs $(ETAGS) -a
|
||||||
.PHONY: etags
|
.PHONY: etags
|
||||||
|
|
||||||
|
|
||||||
cscope:
|
cscope:
|
||||||
$(call msg-gen, $@)
|
$(call msg-gen, $@)
|
||||||
$(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './test/*' ! -type l -print > cscope.files
|
$(Q) $(FIND) $(TAGS_FILES_REGEXP) ! -type l -print > cscope.files
|
||||||
$(Q) $(CSCOPE) -bkqu
|
$(Q) $(CSCOPE) -bkqu
|
||||||
.PHONY: cscope
|
.PHONY: cscope
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user