:
#
#  Asterix demo script for Highland Software Store
#
#
#  xwud programs are distributed for SPARC and DEC RISC machines.
#  to use on other machines, either have xwud program or build it
#  from MIT X11R4 source code.
#
if [ -f /bin/sun ] && sun && sparc
then
    XWUD="./xwud.sparc -fg black -bg white"
fi
if [ -f /ultrixboot ] && [ -f /bin/machine ] && [ `/bin/machine` = "mips" ]
then
    XWUD="./xwud.pmax -fg white -bg black"
fi
if [ "$XWUD" = "" ]
then
	if [ -f /usr/bin/X11/xwud ]
	then
		XWUD="/usr/bin/X11/xwud"
	else
		echo "*** No xwud program found. Cannot display window images. ***"
		exit
	fi
fi

for i in  1-intrologo.xwd 2-intro.xwd 25-mainmenu.xwd 3-words.xwd 4-graphics.xwd 5-ssandbg.xwd 6-tutorial.xwd 7-demoend.xwd
do
	$XWUD -in $i -geometry +0+0 
done
