Skip to content

Commit

Permalink
GNUmakefile: add ctags and etags make targets for the V compiler fron…
Browse files Browse the repository at this point in the history
…tend
  • Loading branch information
spytheman committed Jan 20, 2025
1 parent bd10e12 commit 619ebe7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 -

0 comments on commit 619ebe7

Please sign in to comment.