From f27d8d5d8f3de5d5d19873e66384753b336d89a5 Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 11 Jul 2013 19:56:37 -0700 Subject: [PATCH] list java files first so their methods, which tend to be more numerous, will be found last. --- xwords4/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xwords4/Makefile b/xwords4/Makefile index 9a19ee78e..5038302b0 100644 --- a/xwords4/Makefile +++ b/xwords4/Makefile @@ -1,7 +1,8 @@ tags: - etags $$(find . -name '*.c' -print \ + etags $$(find . \ + -name '*.java' -print \ + -o -name '*.c' -print \ -o -name '*.h' -print \ -o -name '*.cpp' -print \ - -o -name '*.java' -print \ )