aboutsummaryrefslogtreecommitdiff
path: root/externals
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-11-20 17:13:00 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-11-20 17:13:00 +0000
commit4ba7a5cacf27dbf9b132a04d3f7a9e6545f979d7 (patch)
treeae492a917a3d657cd8a65a2da633944fb3cce2ce /externals
parent92ef01f42678b539f8c4714081b767d65cd56cc6 (diff)
update etags to also include .tcl files
svn path=/trunk/; revision=15796
Diffstat (limited to 'externals')
-rw-r--r--externals/Makefile16
1 files changed, 6 insertions, 10 deletions
diff --git a/externals/Makefile b/externals/Makefile
index 24917c68..6439050f 100644
--- a/externals/Makefile
+++ b/externals/Makefile
@@ -2207,21 +2207,18 @@ etags:
find $(externals_src) -type f -name '*.[ch]' -exec etags -a '{}' \;
find $(externals_src) -type f -name '*.cc' -exec etags -a '{}' \;
find $(externals_src) -type f -name '*.cpp' -exec etags -a '{}' \;
- etags --append --language=none --regex="/proc[ \t]+\([^ \t]+\)/\1/" \
- $(externals_src)/unauthorized/*/*.tk
- find /usr/include -type f -name \*.h -exec etags -a '{}' \;
+ find $(externals_src) -type f -name '*.tcl' \
+ -exec etags -a --language=none \
+ --regex="/proc[ \t]+\([^ \t]+\)/\1/" \
+ '{}' \;
make etags_`uname -s`
etags_Darwin:
etags -a $(externals_src)/hid/HID\ Utilities\ Source/*.[ch]
- find /System/Library/Frameworks -type f -name \*.h -exec etags -a '{}' \;
- find /Library/Frameworks -type f -name \*.h -exec etags -a '{}' \;
- find /sw/include -type f -name \*.h -exec etags -a '{}' \;
etags_Linux:
etags_MINGW:
- find /usr/local/include/ -type f -name \*.h -exec etags -a '{}' \;
#==============================================================================#
@@ -2256,6 +2253,5 @@ test_locations:
.PHONY: all install clean distclean test_locations $(LIB_TARGETS) \
-$(patsubst %, %_install,$(LIB_TARGETS)) $(patsubst %, %_clean,$(LIB_TARGETS))
-
-
+$(patsubst %, %_install,$(LIB_TARGETS)) $(patsubst %, %_clean,$(LIB_TARGETS)) \
+etags etags_Darwin etags_Linux etags_MINGW