|
@@ -1,74 +0,0 @@
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-FILES="
|
|
|
-boost/*.hpp
|
|
|
-boost/algorithm
|
|
|
-boost/asio
|
|
|
-boost/assign/list_inserter.hpp
|
|
|
-boost/assign/std/vector.hpp
|
|
|
-boost/bind
|
|
|
-boost/config
|
|
|
-boost/concept
|
|
|
-boost/detail
|
|
|
-boost/exception
|
|
|
-boost/function
|
|
|
-boost/iterator
|
|
|
-boost/mpl
|
|
|
-boost/preprocessor
|
|
|
-boost/python
|
|
|
-boost/range
|
|
|
-boost/smart_ptr
|
|
|
-boost/type_traits
|
|
|
-boost/utility
|
|
|
-"
|
|
|
-
|
|
|
-TARGET="ext"
|
|
|
-
|
|
|
-if [ $# -ne 1 ]
|
|
|
-then
|
|
|
- echo "Usage: boost_import.sh <boost directory>"
|
|
|
- exit
|
|
|
-fi
|
|
|
-
|
|
|
-if [ ! -d $TARGET/boost ]
|
|
|
-then
|
|
|
- echo "This does not appear to be the main trunk/branch directory"
|
|
|
- exit
|
|
|
-fi
|
|
|
-
|
|
|
-
|
|
|
-DIR=$1
|
|
|
-
|
|
|
-do_cmd()
|
|
|
-{
|
|
|
- echo $@
|
|
|
- $@
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-for FILE in ${FILES}
|
|
|
-do
|
|
|
-TGT=`echo ${FILE} | sed 's/[^\/]*$//'`
|
|
|
-cmd="mkdir -p ${TARGET}/${TGT}"
|
|
|
-do_cmd ${cmd}
|
|
|
-cmd="cp -r ${DIR}/${FILE} ${TARGET}/${TGT}"
|
|
|
-do_cmd ${cmd}
|
|
|
-done
|
|
|
-
|
|
|
-
|