Proper name 16 bit libcalls
[llvm/msp430.git] / utils / unittest / googletest / README.LLVM
blob2c673cc6ab749272ebe7835e750b027432e898c2
1 LLVM notes
2 ----------
4 This directory contains Google Test 1.2.1, with all elements removed except for
5 the actual source code, to minimize the addition to the LLVM distribution.
7 Cleaned up as follows:
9 # Remove all the unnecessary files and directories
10 $ rm -f aclocal* configure* Makefile* CHANGES CONTRIBUTORS README
11 $ rm -rf build-aux m4 make msvc samples scons scripts test xcode
12 $ rm -f `find . -name \*\.pump`
14 # Move all the source files to the current directory
15 $ mv src/* .
16 $ rmdir src
18 # Move extra headers into the already-existing internal headers dir
19 $ mv *.h include/gtest/internal/
21 # Update paths to the included files
22 $ perl -pi -e 's|^#include "src/|#include "gtest/internal/|' *.cc
24 $ rm -f gtest-all.cc gtest_main.cc
26 $ mv COPYING LICENSE.TXT