From patchwork Wed Jul 20 03:41:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Makefile: Minor cscope fixups Date: Tue, 19 Jul 2011 17:41:55 -0000 From: Alexandre Raymond X-Patchwork-Id: 105574 Message-Id: <1311133315-978-1-git-send-email-cerbere@gmail.com> 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