
27 Feb
2008
27 Feb
'08
12:03 p.m.
-----Original Message----- From: Mike Frysinger [mailto:vapier@gentoo.org] Sent: Wednesday, February 27, 2008 6:53 PM To: u-boot-users@lists.sourceforge.net Cc: Li Yang; wd@denx.de Subject: Re: [U-Boot-Users] [PATCH] add cscope build target
On Wednesday 27 February 2008, Li Yang wrote:
+cscope:
find $(SUBDIRS) $(TAG_SUBDIRS) -name '*.[ch]' -print \
> cscope.files
cscope -b -q -k
isnt the default cscope behavior to scan the working directory for source files ? in other words, why do you need the `find` ?
The default behavior is to scan only current directory without any subdirectories. A '-R' option will be overkill by including too many files unrelated to a given platform.
- Leo