3 # travels down each subdirectory and builds using make.
4 function make_subdirectories()
6 # keep the variable local to avoid contaminating
10 # find all the subdirectories.
11 for burlap51 in $(find . -mindepth 1 -maxdepth 1 -type d); do
12 # make sure there's a makefile there.
13 if [ -f "$burlap51/makefile" ]; then
14 #echo -e "\n\n[[inside barriers, with filename=$burlap51 and all conditions met]]\n\n"
15 pushd "$burlap51" &>/dev/null
16 make --silent -I "$CLAM_SCRIPTS" NOT_FIRST_MAKE=t
19 echo "(skipping directory $burlap51)"
24 # executes our subdirectory make function.
25 make_subdirectories $*