From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:48896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qm0FP-0007CG-4m for qemu-devel@nongnu.org; Wed, 27 Jul 2011 05:17:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qm0FL-000802-SN for qemu-devel@nongnu.org; Wed, 27 Jul 2011 05:17:47 -0400 Received: from mtagate7.uk.ibm.com ([194.196.100.167]:58468) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qm0FL-0007zq-J2 for qemu-devel@nongnu.org; Wed, 27 Jul 2011 05:17:43 -0400 Received: from d06nrmr1307.portsmouth.uk.ibm.com (d06nrmr1307.portsmouth.uk.ibm.com [9.149.38.129]) by mtagate7.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p6R9HhQE023649 for ; Wed, 27 Jul 2011 09:17:43 GMT Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p6R9HgG91687610 for ; Wed, 27 Jul 2011 10:17:42 +0100 Received: from d06av11.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p6R9HfLZ030616 for ; Wed, 27 Jul 2011 03:17:42 -0600 From: Stefan Hajnoczi Date: Wed, 27 Jul 2011 10:17:27 +0100 Message-Id: <1311758252-10072-3-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1311758252-10072-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1311758252-10072-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 2/7] Makefile: Minor cscope fixups List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexandre Raymond , Anthony Liguori , Stefan Hajnoczi From: 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 Signed-off-by: Stefan Hajnoczi --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index daa3aa0..eb1c788 100644 --- a/Makefile +++ b/Makefile @@ -291,7 +291,7 @@ TAGS: cscope: rm -f ./cscope.* - find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files + find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files cscope -b # documentation -- 1.7.5.4