mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
GNUmakefile: add ctags and etags make targets for the V compiler frontend
This commit is contained in:
parent
bd10e12460
commit
619ebe7cd5
1 changed files with 7 additions and 1 deletions
|
@ -90,7 +90,7 @@ endif
|
|||
endif
|
||||
endif
|
||||
|
||||
.PHONY: all clean rebuild check fresh_vc fresh_tcc fresh_legacy check_for_working_tcc
|
||||
.PHONY: all clean rebuild check fresh_vc fresh_tcc fresh_legacy check_for_working_tcc etags ctags
|
||||
|
||||
ifdef prod
|
||||
VFLAGS+=-prod
|
||||
|
@ -213,3 +213,9 @@ install:
|
|||
|
||||
check:
|
||||
$(VEXE) test-all
|
||||
|
||||
etags:
|
||||
./v -print-v-files cmd/v | grep -v :parse_text| etags -L -
|
||||
|
||||
ctags:
|
||||
./v -print-v-files cmd/v | grep -v :parse_text| ctags -L -
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue