| DIRS=`find . -name targets -prune -o -type d ! -name . -print | grep -v CVS | sed s/..//` |
| TARGET=${1-`./config.guess`} |
| echo Target directory: $TARGET |
| echo Sub directories: $DIRS |
| [ -d targets ] || mkdir targets |
| /bin/echo Target already exists. Do you want to rebuild it\? '[y]' \\c |
| echo Creating target directory: $TARGET |
| [ -d $TARGET ] || mkdir $TARGET |
| for f in ../../../../../$f/* ; do [ -d $f ] || ln -sf $f . ; done |
| for f in ../../../../$f/* ; do [ -d $f ] || ln -sf $f . ; done |
| for f in ../../$f/* ; do [ -d $f ] || ln -sf $f . ; done |
| for f in ../../../$f/* ; do [ -d $f ] || ln -sf $f . ; done |