From: Mark Frazer <mark@somanetworks.com>
To: "Khachaturov, Vassilii" <Vassilii.Khachaturov@comverse.com>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: Makefile patch for cscope and saner Ctags
Date: Thu, 31 May 2001 16:44:58 -0400 [thread overview]
Message-ID: <20010531164458.D30470@somanetworks.com> (raw)
In-Reply-To: <6B1DF6EEBA51D31182F200902740436802678F0D@mail-in.comverse-in.com>
In-Reply-To: <6B1DF6EEBA51D31182F200902740436802678F0D@mail-in.comverse-in.com>; from Vassilii.Khachaturov@comverse.com on Thu, May 31, 2001 at 02:52:52PM -0400
[-- Attachment #1: Type: text/plain, Size: 584 bytes --]
Khachaturov, Vassilii <Vassilii.Khachaturov@comverse.com> [01/05/31 15:00]:
> Don't forget to bug RH package maintainer on that. Whatever
bugzilla submitted
> I use source-built cscope v.15.1, and -k works for me here,
works for me too!
> WHY?! Isn't it better to put $(shell cat cscope.files) on the list of
I only have a yellow belt in makefile kungfu. These fancy gnu make things
are relatively new to some of us...
The latest patch is attached. include/linux/compile.h seems to get
built whenever I run make, so that's why I've excluded it from the deps
for cscope.out.
[-- Attachment #2: patch.Makefile --]
[-- Type: text/plain, Size: 2439 bytes --]
--- Makefile.old Mon May 28 22:44:01 2001
+++ Makefile Thu May 31 16:29:38 2001
@@ -334,10 +334,41 @@
# Exuberant ctags works better with -I
tags: dummy
- CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
+ CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "--sort=no -I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
ctags $$CTAGSF `find include/asm-$(ARCH) -name '*.h'` && \
- find include -type d \( -name "asm-*" -o -name config \) -prune -o -name '*.h' -print | xargs ctags $$CTAGSF -a && \
+ find include -type f -name '*.h' -mindepth 2 -maxdepth 2 \
+ | grep -v include/asm- | grep -v include/config \
+ | xargs -r ctags $$CTAGSF -a && \
+ find include -type f -name '*.h' -mindepth 3 -maxdepth 3 \
+ | grep -v include/asm- | grep -v include/config \
+ | xargs -r ctags $$CTAGSF -a && \
+ find include -type f -name '*.h' -mindepth 4 -maxdepth 4 \
+ | grep -v include/asm- | grep -v include/config \
+ | xargs -r ctags $$CTAGSF -a && \
+ find include -type f -name '*.h' -mindepth 5 -maxdepth 5 \
+ | grep -v include/asm- | grep -v include/config \
+ | xargs -r ctags $$CTAGSF -a && \
find $(SUBDIRS) init -name '*.c' | xargs ctags $$CTAGSF -a
+ mv tags tags.unsorted
+ LC_ALL=C sort -k 1,1 -s tags.unsorted > tags
+ rm tags.unsorted
+
+cscope.files: dummy
+ @find include/asm-$(ARCH) -name '*.h' >.cscope.files
+ @find include $(SUBDIRS) init -type f -name '*.[ch]' \
+ | grep -v include/asm- | grep -v include/config >> .cscope.files
+ @[ -f cscope.files ] || touch cscope.files
+ @if cmp -s .cscope.files cscope.files ; then \
+ /bin/rm .cscope.files ; \
+ else \
+ rm cscope.files ; mv .cscope.files cscope.files ; \
+ fi
+
+.PHONY: cscope
+cscope: cscope.out
+cscope.out: cscope.files \
+ $(shell [ -f cscope.files ] && grep -v include/linux/compile.h cscope.files)
+ cscope -k -b -I include
ifdef CONFIG_MODULES
ifdef CONFIG_MODVERSIONS
@@ -416,7 +447,8 @@
distclean: mrproper
rm -f core `find . \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
- -o -name '.*.rej' -o -name '.SUMS' -o -size 0 \) -type f -print` TAGS tags
+ -o -name '.*.rej' -o -name '.SUMS' -o -size 0 \) -type f -print` TAGS tags \
+ cscope.files cscope.out
backup: mrproper
cd .. && tar cf - linux/ | gzip -9 > backup.gz
next prev parent reply other threads:[~2001-05-31 20:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-05-31 18:52 Makefile patch for cscope and saner Ctags Khachaturov, Vassilii
2001-05-31 20:44 ` Mark Frazer [this message]
-- strict thread matches above, loose matches on Subject: below --
2001-06-01 18:39 Khachaturov, Vassilii
2001-05-31 16:11 Khachaturov, Vassilii
2001-05-31 18:06 ` Mark Frazer
2001-05-31 18:56 ` george anzinger
2001-05-30 22:02 Mark Frazer
2001-05-31 17:45 ` Pete Wyckoff
2001-05-31 18:17 ` Mark Frazer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20010531164458.D30470@somanetworks.com \
--to=mark@somanetworks.com \
--cc=Vassilii.Khachaturov@comverse.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.