echo ":: Searching for '$1' in /src/apps"
cd apps
if [ -r $1.c ]; then
  echo ":: Building '$1'"
  gcc $1.c -oa.out -static
  strip a.out
  echo ":: Copying '$1' to /bin"
  mv a.out ../../bin/$1
else
  echo "   :: '$1' not found"
fi
cd ..
