summaryrefslogtreecommitdiff
path: root/utils/getsrcs.sh
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-09-20 07:22:23 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-09-20 07:22:23 +0000
commitb27b78f6a4be0eb96b79c818490ca924d18d50b1 (patch)
treeeb1205d944715420fb96ec4efe330d6774dec7ea /utils/getsrcs.sh
parent8141e371098c5d1b01e5e604e22bb2d58ae59402 (diff)
downloadllvm-b27b78f6a4be0eb96b79c818490ca924d18d50b1.tar.gz
llvm-b27b78f6a4be0eb96b79c818490ca924d18d50b1.tar.bz2
llvm-b27b78f6a4be0eb96b79c818490ca924d18d50b1.tar.xz
Base the implementation on the llvmdo script so that we only have to
maintain the logic for "what counts as a source file" in one place. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/getsrcs.sh')
-rwxr-xr-xutils/getsrcs.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/utils/getsrcs.sh b/utils/getsrcs.sh
index 210c6980de..2b2f7089e5 100755
--- a/utils/getsrcs.sh
+++ b/utils/getsrcs.sh
@@ -1,10 +1,10 @@
#!/bin/sh
# This is useful because it prints out all of the source files. Useful for
# greps.
-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$' | \
- grep -v /Burg/ | grep -v '\.lo' | grep -v '\.inc$' | grep -v '\.libs' | \
- grep -v TableGen/FileParser.cpp | grep -v TableGen/FileParser.h
-
+TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
+if test -d "$TOPDIR" ; then
+ cd $TOPDIR
+ ./utils/llvmdo -dirs "include lib tools utils examples projects" echo
+else
+ echo "Can't find LLVM top directory in $TOPDIR"
+fi