summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-12 18:32:40 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-12 18:32:40 +0000
commit677b715228846ec2d72c10f3210d0b1538d6edff (patch)
treeb754ebf0b2aa2b9e9ad2a0206a03be46bda7ce6f /Makefile
parent417c14ab3d1af9cc1cced391a7b73a85d4cbff22 (diff)
TAGS and tags now look at .cpp and .hpp files.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1159 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dde4f102..3e3255e0 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
#
# @enddesc
-# @version $Id: Makefile,v 1.57 1999-11-12 18:31:42 goodale Exp $
+# @version $Id: Makefile,v 1.58 1999-11-12 18:32:40 goodale Exp $
# @@*/
##################################################################################
@@ -211,7 +211,7 @@ TAGS:
@echo $(DIVIDER)
@echo Updating the Emacs TAGS file
rm -f TAGS ; touch TAGS
- find src arrangements \( -name '*.[chCF]' -o -name '*.F77' -o -name '*.cc' \) \
+ find src arrangements \( -name '*.[chCF]' -o -name '*.F77' -o -name '*.cc' -o -name '*.[ch]pp' \) \
-exec etags -a {} \;
# find src arrangements \( -name '*.[cChF]' -o -name '*.F77' -o -name '*.cc'\) \
# -exec etags --append --regex '/[a-z A-Z \t]*FORTRAN_NAME[^)]*/' {} \;
@@ -222,7 +222,7 @@ tags:
@echo $(DIVIDER)
@echo Updating the vi tags file
rm -f tags ; touch tags
- find src arrangements \( -name '*.[cChF]' -o -name '*.F77' -o -name '*.cc' \) \
+ find src arrangements \( -name '*.[cChF]' -o -name '*.F77' -o -name '*.cc' -o -name '*.[ch]pp' \) \
-exec ctags -a {} \;
perl -pi -e 's/(subroutine\s*)([a-zA-Z0-9_]+)/\1\L\2/g;' tags
sort tags > sortedtags ; mv sortedtags tags