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

#
#	gmake for etc - nothing special here
#
include ${DEPTROOT}/etc/gmake.init

SafeFiles	:=	Makefile ${wildcard *.11} 

.PHONY:	remotes all targets safe

targets:	;

install:	RemoteCopies

remotes:	RemoteCopies

all:		safe remotes

RemoteCopies: ${SafeFiles}
	shadowcopy -v $?
	touch RemoteCopies

safe:	.safe.${jdate}.Z

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

clean:
	-rm RemoteCopies ${wildcard ShdCpy*}  
