fixed for cleaning up the .a files
[feisty_meow.git] / scripts / clam / make_subdirs.sh
index ac950559f7f1b4ff1b9f7355954bf2edebafcad7..fcb8f8a8316c9f3ee822a834fbe6cf7811d2a92b 100755 (executable)
@@ -11,12 +11,12 @@ function make_subdirectories()
   for burlap51 in $(find . -mindepth 1 -maxdepth 1 -type d); do
     # make sure there's a makefile there.
     if [ -f "$burlap51/makefile" ]; then
-#echo "inside barriers, with filename=$burlap51 and all conditions met."
-      pushd "$burlap51"
+#echo -e "\n\n[[inside barriers, with filename=$burlap51 and all conditions met]]\n\n"
+      pushd "$burlap51" &>/dev/null
       make --silent -I "$CLAM_DIR" NOT_FIRST_MAKE=t 
-      popd
+      popd &>/dev/null
     else
-      echo "Skipping makefile-less directory $burlap51..."
+      echo "(skipping directory $burlap51)"
     fi
   done
 }