Home | History | Annotate | Line # | Download | only in compiler_rt
prepare-import.sh revision 1.1
      1  1.1  joerg #!/bin/sh
      2  1.1  joerg # $NetBSD: prepare-import.sh,v 1.1 2013/07/04 22:12:40 joerg Exp $
      3  1.1  joerg #
      4  1.1  joerg # Checkout compiler_rt into dist.
      5  1.1  joerg # Run this script and check for additional files and directories to prune,
      6  1.1  joerg # only relevant content should be included.
      7  1.1  joerg 
      8  1.1  joerg set -e
      9  1.1  joerg 
     10  1.1  joerg cd dist
     11  1.1  joerg rm -rf .svn
     12  1.1  joerg rm -rf BlocksRuntime SDKs cmake include make www
     13  1.1  joerg rm -f .arcconfig .gitignore CMakeLists.txt Makefile
     14  1.1  joerg rm -rf lib/asan lib/interception lib/msan lib/msandr lib/sanitizer_common
     15  1.1  joerg rm -rf lib/tsan lib/ubsan
     16  1.1  joerg rm -f lib/*/Makefile.mk lib/Makefile.mk lib/CMakeLists.txt
     17  1.1  joerg rm -f lib/apple_versioning.c lib/lit.common.* lib/profile/CMakeLists.txt
     18  1.1  joerg rmdir lib/sparc64
     19