#!/bin/sh

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

#
# - changed to use local date.h files rather than ~usp/include/f77/date.h
# - changed to a Bourne shell to get around Solaris gmake problem 1/7/94 - jmw
#
# if ( -e date.h) "rm" date.h
set clobber
echo "      write(LERR,*)'**************************************'" > date.h
echo "      write(LERR,*) name,'  Modified... '" >> date.h
echo "      write(LERR,*) " >> date.h
echo "     1  '`date`'" >> date.h
echo "      write(LERR,*)'**************************************'" >> date.h
echo "      write(LERR,*)' '" >> date.h
touch date.h
exit 0
