summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-09 14:56:28 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-09 14:56:28 +0000
commit751f8419dd9313a5894940061c0bee1be4eb7e8c (patch)
treeb1cd38329db8d77e773ffa547fb2e97284828013 /Makefile
parent9e2d2801bc6148a90a8588ac226c60042abcef7e (diff)
Made TAGS work even with exuberant ctags - i.e. the lowest common
subset of features 8-( Perhaps we should just tell everyone to use GNU ctags instead ? Removed # in front of .SILENT, as the SILENT=no option makes this uneccessery now. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@391 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6feb6d5b..f57d1f80 100644
--- a/Makefile
+++ b/Makefile
@@ -16,12 +16,12 @@
#
#
# @enddesc
-# @version $Id: Makefile,v 1.19 1999-02-27 11:51:14 allen Exp $
+# @version $Id: Makefile,v 1.20 1999-03-09 14:56:28 goodale Exp $
# @@*/
# Make quietly unless told not to
ifneq ($(strip $(SILENT)),no)
-#.SILENT:
+.SILENT:
endif
# Set the options to pass to the setup script
@@ -102,7 +102,9 @@ TAGS:
@echo $(DIVIDER)
@echo Updating the Emacs TAGS file
find src packages \( -name '*.[chF]' -o -name '*.F77' \) \
- -exec etags --append --regex '/[a-z A-Z \t]*FORTRAN_NAME[^)]*/' {} \;
+ -exec etags --append {} \;
+# find src packages \( -name '*.[chF]' -o -name '*.F77' \) \
+# -exec etags --append --regex '/[a-z A-Z \t]*FORTRAN_NAME[^)]*/' {} \;
perl -pi -e 's/(subroutine\s*)([a-zA-Z0-9_]+)/\1\L\2/g;' TAGS
@echo $(DIVIDER)