diff options
author | Alexandre Raymond | 2011-07-21 05:12:15 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2011-07-27 11:09:56 +0200 |
commit | 45b75ae4ee19a74c826a94e073762b5c7080a90c (patch) | |
tree | 8fb84de6d385ed6de1ed15a84c419ef7ef515969 | |
parent | vhost build fix for i386 (diff) | |
download | qemu-45b75ae4ee19a74c826a94e073762b5c7080a90c.tar.gz qemu-45b75ae4ee19a74c826a94e073762b5c7080a90c.tar.xz qemu-45b75ae4ee19a74c826a94e073762b5c7080a90c.zip |
Makefile: Minor cscope fixups
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 <cerbere@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |