diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-19 16:51:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-19 16:51:10 +0000 |
commit | ca269e4327488b61be95da3fd45a55e4fb05f5aa (patch) | |
tree | 254b0c29c869944196ef0579a3bf8c3022086787 /getsrcs.sh | |
parent | 045e7c8434cc9b61413c0b4df3b8568e79fe28bf (diff) | |
download | external_llvm-ca269e4327488b61be95da3fd45a55e4fb05f5aa.zip external_llvm-ca269e4327488b61be95da3fd45a55e4fb05f5aa.tar.gz external_llvm-ca269e4327488b61be95da3fd45a55e4fb05f5aa.tar.bz2 |
Print .def files as well as other files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'getsrcs.sh')
-rwxr-xr-x | getsrcs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh # This is useful because it prints out all of the source files. Useful for # greps. -find . -name \*.\[chyl\]\* | grep -v Lexer.cpp | grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | grep -v '\.ll$' | grep -v test | grep -v .flc | grep -v Sparc.burm.c +find . -name \*.\[cdhyl\]\* | grep -v Lexer.cpp | grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | grep -v '\.ll$' | grep -v test | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' | grep -v '\.dir$' |