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

include ${DEPTROOT}/etc/gmake.init

SafeFiles := ${wildcard *.h} Makefile

.PHONY: remotes all

targets:

all : safe clean remotes

remotes : RemoteCopies

install : RemoteCopies

RemoteCopies :	${SafeFiles}
	shadowcopy $? && touch RemoteCopies

safe:	.safe.${jdate}.Z

.safe.${jdate}.Z:	${SafeFiles}
	${MakeSafe}

clean:
	-rm RemoteCopies RemoteMakes ${wildcard ShdCpy*}
