X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=c17fe74aa627e8be054fa291eeed0222bbb7377b;hb=73d9d45aadc01fc13a5e82801c595fafb11c123c;hp=62ac458cf62211b9254ae87dbe0adf373b8900d8;hpb=ff2b391abe299bae7536134c8f4837f20bf5c969;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index 62ac458c..c17fe74a 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -41,6 +41,7 @@ EMUL_DIR="${BERTOS_DIR}/emul" WIZARD_DIR="./wizard" APP_DIR="./examples" FAT_DIR="${BERTOS_DIR}/fs/fatfs" +NMEA_DIR="${BERTOS_DIR}/net/nmeap" if [ $# \< 2 ] ; then printf "You must specify a cpu target, and source file type!\n" @@ -49,7 +50,7 @@ if [ $# \< 2 ] ; then exit 1 fi CPU_TARGET=$1 -EXCLUDE_DIRS="$COPY_DIR $CPU_DIR $APP_DIR $OS_DIR $WIZARD_DIR $EMUL_DIR $FAT_DIR" +EXCLUDE_DIRS="$COPY_DIR $CPU_DIR $APP_DIR $OS_DIR $WIZARD_DIR $EMUL_DIR $FAT_DIR $NMEA_DIR" EXCLUDE_CMD="\.svn -prune " for i in $EXCLUDE_DIRS; do EXCLUDE_CMD="$EXCLUDE_CMD -o -path $i -prune ";