[llvm-commits] CVS: llvm/utils/getsrcs.sh llvmgrep

Reid Spencer reid at x10sys.com
Tue Aug 24 10:42:43 PDT 2004



Changes in directory llvm/utils:

getsrcs.sh updated: 1.18 -> 1.19
llvmgrep updated: 1.3 -> 1.4
---
Log message:

Add the examples directory to these scripts.


---
Diffs of the changes:  (+2 -2)

Index: llvm/utils/getsrcs.sh
diff -u llvm/utils/getsrcs.sh:1.18 llvm/utils/getsrcs.sh:1.19
--- llvm/utils/getsrcs.sh:1.18	Sun Aug 15 17:54:31 2004
+++ llvm/utils/getsrcs.sh	Tue Aug 24 12:42:33 2004
@@ -1,7 +1,7 @@
 #!/bin/sh
 # This is useful because it prints out all of the source files.  Useful for
 # greps.
-find docs include lib tools utils projects -name \*.\[cdhylt\]\* | grep -v Lexer.cpp | \
+find docs include lib tools utils examples projects -name \*.\[cdhylt\]\* | grep -v Lexer.cpp | \
        grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | \
        grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' |\
        grep -v '\.dir$' | grep -v '\.la$' | \


Index: llvm/utils/llvmgrep
diff -u llvm/utils/llvmgrep:1.3 llvm/utils/llvmgrep:1.4
--- llvm/utils/llvmgrep:1.3	Sun Aug 15 17:54:31 2004
+++ llvm/utils/llvmgrep	Tue Aug 24 12:42:33 2004
@@ -5,7 +5,7 @@
 TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'`
 if test -d "$TOPDIR" ; then
   cd $TOPDIR
-  find docs include lib tools utils projects -type f \
+  find docs include lib tools utils examples projects -type f \
       \( -path '*/doxygen/*' -o -path '*/Burg/*' \) -prune -o \
       -name '*.[cdhylt]*' \
       \! -name '*~' \






More information about the llvm-commits mailing list