X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=8e9bcd6031dbbfed481bca127a33951ef17ac2cd;hb=b812899d840ba9245e6e95725668bf911a9b36c7;hp=4365e2b39d31a2afa0f81bfd8b849be1f2e6a771;hpb=019f349b2d3ae26aa760912498c8b6edb7e2c7ae;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index 4365e2b3..8e9bcd60 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -32,12 +32,13 @@ #Directories BERTOS_DIR="./bertos" +COPY_DIR="./bertos.saved" CPU_DIR="${BERTOS_DIR}/cpu" #Directory to exclude OS_DIR="${BERTOS_DIR}/os" EMUL_DIR="${BERTOS_DIR}/emul" -APP_DIR="./app" +APP_DIR="./examples" if [ $# \< 2 ] ; then printf "You must specify a cpu target, and source file type!\n" @@ -46,8 +47,8 @@ if [ $# \< 2 ] ; then exit 1 fi CPU_TARGET=$1 -#Create a list of source file whitout a cpu specific source -GEN_SRC=`find . \( -name \.svn -prune -o -path $CPU_DIR -prune -o -path $APP_DIR -prune -o -path $OS_DIR -prune -o -path $EMUL_DIR -prune \) -o -name *.${2} -print | xargs` +#Create a list of source file without a cpu specific source +GEN_SRC=`find . \( -name \.svn -prune -o -path $COPY_DIR -prune -o -path $CPU_DIR -prune -o -path $APP_DIR -prune -o -path $OS_DIR -prune -o -path $EMUL_DIR -prune \) -o -name *.${2} -print | xargs` #Select c and asm sources for selected cpu target TRG_SRC=`find ${CPU_DIR}/$CPU_TARGET -name \.svn -prune -o -name *.${2} -print | xargs`