#!/bin/sh

########################################################################
#                 copyright 2001, Amoco Production Company             #
#                             All Rights Reserved                      #
#                     an affiliate of BP America Inc.                  #
########################################################################

#
set clobber
month=`date +%h`
date=`date +%d`
year=`date +%y`
time=`date +%T`
echo "	\" Beta Version: ${time} ${month} ${date} 20${year}\","
echo "char *version[] = { "					> version.h
echo "	\"     USP Media Stacker Utility\", "			>> version.h
echo "	\"Amoco Production Company Proprietary\", "		>> version.h
echo "	\" Beta Version: ${time} ${month} ${date} 20${year}\"," >> version.h
echo "	\" \", "						>> version.h
echo "	\"       Written by: Joe M. Wade\", "			>> version.h
echo "	\"      Amoco Production Research\", "			>> version.h
echo "	\"       jwade@amoco.com\", "				>> version.h
echo "	\"\""							>> version.h
echo "	};"							>> version.h
exit 0
