changeset 29267:7b2f34b6ff9a

Simplify find invocation in tags/TAGS generation command: - Drop '-print', which is the default for find. - Drop unnecessary invocation of find in a subshell.
author diego
date Fri, 15 May 2009 22:24:12 +0000
parents 7e47c52d69e7
children 170369ec951c
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Wed May 13 19:44:44 2009 +0000
+++ b/Makefile	Fri May 15 22:24:12 2009 +0000
@@ -982,10 +982,10 @@
 	doxygen DOCS/tech/Doxyfile
 
 TAGS:
-	rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs etags -a
+	rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs etags -a
 
 tags:
-	rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs ctags -a
+	rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs ctags -a