#!/bin/sh

echo
echo "+=========================+"
echo "| Building game disk (Y1) |"
echo "+=========================+"
echo
echo

for subdir in * ; do
  if [ -d $subdir ]; then
    ( cd $subdir ; SlackBuild $* )
  fi
done
