#!/bin/sh

../plot/plot -T gif <$SRCDIR/graph.xout >plot2gif.out 2>/dev/null

if cmp -s $SRCDIR/plot2gif.xout plot2gif.out
	then retval=0;
	else retval=1;
	fi;

exit $retval
