# HG changeset patch # User apetrusenko # Date 1208186981 25200 # Node ID 7c5dac90daef65b41fa42bf2c2fe2369db42bb7c # Parent 9f4457a14b586f37f55903271122afcf2b1cf54e# Parent 7747916a0945677ce847d8f84e37179f7df89ff5 Merge diff -r 9f4457a14b58 -r 7c5dac90daef build/linux/makefiles/cscope.make --- a/build/linux/makefiles/cscope.make Wed Apr 09 15:10:22 2008 -0700 +++ b/build/linux/makefiles/cscope.make Mon Apr 14 08:29:41 2008 -0700 @@ -38,6 +38,7 @@ NAWK = awk RM = rm -f +HG = hg CS_TOP = ../.. CSDIRS = $(CS_TOP)/src $(CS_TOP)/build @@ -140,13 +141,17 @@ # .nametable.files and .nametable.files.tmp are used to determine if any files # were added to/deleted from/renamed in the workspace. If not, then there's -# normally no need to run find. To force a 'find': gmake nametable.clean. +# normally no need to rebuild the cscope database. To force a rebuild of +# the cscope database: gmake nametable.clean. .nametable.files: .nametable.files.tmp - cmp -s $@ $< || cp $< $@ + ( cmp -s $@ $< ) || ( cp $< $@ ) + -$(RM) $< -.nametable.files.tmp: $(CS_TOP)/Codemgr_wsdata/nametable - $(NAWK) \ - '{ if (sub("( [a-z0-9]{2,8}){4}$$", "")) print $$0; }' $< > $@ +# `hg status' is slightly faster than `hg fstatus'. Both are +# quite a bit slower on an NFS mounted file system, so this is +# really geared towards repos on local file systems. +.nametable.files.tmp: + -$(HG) fstatus -acmn > $@ nametable.clean: -$(RM) .nametable.files .nametable.files.tmp diff -r 9f4457a14b58 -r 7c5dac90daef build/solaris/makefiles/cscope.make --- a/build/solaris/makefiles/cscope.make Wed Apr 09 15:10:22 2008 -0700 +++ b/build/solaris/makefiles/cscope.make Mon Apr 14 08:29:41 2008 -0700 @@ -38,6 +38,7 @@ NAWK = /usr/xpg4/bin/awk RM = rm -f +HG = hg CS_TOP = ../.. CSDIRS = $(CS_TOP)/src $(CS_TOP)/build @@ -141,13 +142,17 @@ # .nametable.files and .nametable.files.tmp are used to determine if any files # were added to/deleted from/renamed in the workspace. If not, then there's -# normally no need to run find. To force a 'find': gmake nametable.clean. +# normally no need to rebuild the cscope database. To force a rebuild of +# the cscope database: gmake nametable.clean. .nametable.files: .nametable.files.tmp - cmp -s $@ $< || cp $< $@ + ( cmp -s $@ $< ) || ( cp $< $@ ) + -$(RM) $< -.nametable.files.tmp: $(CS_TOP)/Codemgr_wsdata/nametable - $(NAWK) \ - '{ if (sub("( [a-z0-9]{2,8}){4}$$", "")) print $$0; }' $< > $@ +# `hg status' is slightly faster than `hg fstatus'. Both are +# quite a bit slower on an NFS mounted file system, so this is +# really geared towards repos on local file systems. +.nametable.files.tmp: + -$(HG) fstatus -acmn > $@ nametable.clean: -$(RM) .nametable.files .nametable.files.tmp