X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=c9795979f4e44fe105fe360757823bd1c6a21003;hb=82f680048d359567d43f9f9d118dbd6190c7ccdd;hp=8e9bcd6031dbbfed481bca127a33951ef17ac2cd;hpb=8e43f92b1f1a7512ae31937a950d180c54629ae1;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index 8e9bcd60..c9795979 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -38,6 +38,7 @@ CPU_DIR="${BERTOS_DIR}/cpu" #Directory to exclude OS_DIR="${BERTOS_DIR}/os" EMUL_DIR="${BERTOS_DIR}/emul" +WIZARD_DIR="./wizard" APP_DIR="./examples" if [ $# \< 2 ] ; then @@ -48,7 +49,7 @@ if [ $# \< 2 ] ; then fi CPU_TARGET=$1 #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` +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 $WIZARD_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`