From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36552) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjNgL-0005vr-PM for qemu-devel@nongnu.org; Tue, 19 Jul 2011 23:42:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QjNgJ-00073P-5x for qemu-devel@nongnu.org; Tue, 19 Jul 2011 23:42:45 -0400 From: Alexandre Raymond Date: Tue, 19 Jul 2011 23:41:55 -0400 Message-Id: <1311133315-978-1-git-send-email-cerbere@gmail.com> Subject: [Qemu-devel] [PATCH] Makefile: Minor cscope fixups List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Alexandre Raymond -Create cscope symbols for assembly files in addition to .c/.h files. -Create cscope database with full path instead of relative path so cscope can be used with CSCOPE_DB in any directory. Signed-off-by: Alexandre Raymond --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index b3ffbe2..4273b6f 100644 --- a/Makefile +++ b/Makefile @@ -254,7 +254,7 @@ TAGS: cscope: rm -f ./cscope.* - find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files + find $$PWD -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files cscope -b # documentation -- 1.7.5