#	START NEW ARIX SCCS HEADER
#
#	@(#) Makefile: version 25.1 created on 12/2/91 at 17:06:22
#
#	Copyright (c) 1990 by Arix Corporation
#	All Rights Reserved
#
#	@(#)Makefile	25.1	12/2/91 Copyright (c) 1990 by Arix Corporation
#
#	END NEW ARIX SCCS HEADER
#
#	Copyright (c) 1984 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.

#	ATT:#ident	"sadmin3b2:etc/Makefile	1.6"

#ident	"@(#)sadmin3b2/etc:Makefile	25.1"

#	Makefile for etc
#	Generated Wed May  1 14:03:24 EDT 1985 from skeleton makefile:

IROOT =
SROOT =
include $(IROOT)/macdefs

DIR = $(ROOT)/etc
# CMDS = bzapunix 

PARTS = $(CMDS) bupsched checklist coredirs fstab

all:		$(PARTS)

install:	$(PARTS) dirs
	chown bin $(PARTS)
	chgrp bin $(PARTS)
	chmod 666 $(PARTS)
	umask 022;  /bin/ls $(PARTS)  |  cpio -pvdum $(DIR)
	cd $(DIR);chmod go-w,u+w $(PARTS);chown root $(PARTS);chgrp sys $(PARTS)
	cd $(DIR); chmod 600 bupsched

dirs:
	if [ ! -d $(DIR) ] ;\
	then \
		mkdir $(DIR) ;\
		chmod 775 $(DIR) ;\
		chown bin $(DIR) ;\
		chgrp bin $(DIR) ;\
	fi

remove:
	cd $(DIR);  rm -f $(PARTS)

clean:

clobber:

