diff options
author | Reini Urban <rurban@cpanel.net> | 2015-02-09 10:08:45 +0100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2015-10-14 14:27:19 +1100 |
commit | e8d46ec9188dc03d953c84b7de7a468aec2b55d5 (patch) | |
tree | 0bf58cc501c403c834cbcc5755e72b6bc718cfd4 /Makefile.SH | |
parent | b4c079ca5d8a33bb5ba0f089219e8578c50c9636 (diff) | |
download | perl-e8d46ec9188dc03d953c84b7de7a468aec2b55d5.tar.gz |
Makefile: add TAGS target (etags, not ctags)
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.SH b/Makefile.SH index e009ba9f13..14ab983b04 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1638,6 +1638,9 @@ distcheck: FORCE .PHONY: ctags +TAGS: $(c1) $(c2) $(c3) $(c4) $(c5) $(h) + etags $(c1) $(c2) $(c3) $(c4) $(c5) $(h) + ctags: ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h |