######################## Set and print input parameters: libs ################# # export srclibs=${list_of_libraries} echo " " if [ "$MAKETARGET" = "all" ]; then echo "Libraries which will be updated :" echo $srclibs elif [ "$MAKETARGET" = "clean" ]; then echo "Libraries which will be cleaned :" echo $srclibs elif [ "$MAKETARGET" = "tar" ]; then echo "A tar-file of libraries will be created with:" echo $srclibs fi ################################################################################ # # Libraries for all models # TARFILE_DIRS="" for srclib in $srclibs; do TARFILE_DIRS=${TARFILE_DIRS}" src/lib/${srclib}" done export TARFILE_DIRS