# HG changeset patch
# User diego
# Date 1242426252 0
# Node ID 7b2f34b6ff9a44ba6ebe77e0a17e803e32a448bd
# Parent  7e47c52d69e7d46173a93f9ec4f3725d4396114f
Simplify find invocation in tags/TAGS generation command:
- Drop '-print', which is the default for find.
- Drop unnecessary invocation of find in a subshell.

diff -r 7e47c52d69e7 -r 7b2f34b6ff9a Makefile
--- 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