diff options
author | Andy Lester <andy@petdance.com> | 2005-05-12 06:40:52 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-20 13:11:43 +0000 |
commit | 5c36f62652b0995b0bfdb6299979b72fd3223d6b (patch) | |
tree | 9612b8cb66ac5f586a8bc7ac3468b5c5e6c01f02 | |
parent | 41e5fcb0a3c28c92c13b25bc869395d47115a518 (diff) | |
download | perl-5c36f62652b0995b0bfdb6299979b72fd3223d6b.tar.gz |
Add a Makefile target for ctags
Message-ID: <20050512164052.GA30287@petdance.com>
p4raw-id: //depot/perl@24511
-rw-r--r-- | Makefile.SH | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index 70c3d6c935..7026bc682f 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1273,14 +1273,15 @@ etags: TAGS TAGS: emacs/cperl-mode.elc sh emacs/ptags -ctags: tags - # Let's hope make will not go into an infinite loop on case-unsensitive systems # This may also fail if . is in the head of the path, since perl will # require -Ilib tags: TAGS perl emacs/e2ctags.pl TAGS > tags +ctags: + ctags -f Tags --totals --languages=c *.c *.h + # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE # If this runs make out of memory, delete /usr/include lines. !NO!SUBS! |