Re: [U-Boot-Users] [PATCH] add cscope build target

2008-02-28 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Add cscope build target to generate cscope database for code > browsing. I'm afraid I have to reject this patch because... > +cscope: > + find $(SUBDIRS) $(TAG_SUBDIRS) -name '*.[ch]' -print \ > +

Re: [U-Boot-Users] [PATCH] add cscope build target

2008-02-27 Thread Li Yang
> -Original Message- > From: Mike Frysinger [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 27, 2008 6:53 PM > To: u-boot-users@lists.sourceforge.net > Cc: Li Yang; [EMAIL PROTECTED] > Subject: Re: [U-Boot-Users] [PATCH] add cscope build target > > On Wednes

Re: [U-Boot-Users] [PATCH] add cscope build target

2008-02-27 Thread Mike Frysinger
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

[U-Boot-Users] [PATCH] add cscope build target

2008-02-27 Thread Li Yang
Add cscope build target to generate cscope database for code browsing. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- Makefile |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index d6a0299..1efd33e 100644 --- a/Makefile +++ b/Makefile @@ -400,6 +400