#	START NEW ARIX SCCS HEADER
#
#	@(#) Makefile: version 25.1 created on 12/2/91 at 17:03:27
#
#	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	"sadmin:shell/Makefile	2.3"
#	jc3 6/23/88 june:  added shell script "diskready"

#ident	"@(#)sadmin/shell:Makefile	1.1"

#	Makefile for shell

IROOT =
include $(IROOT)/macdefs

DIR = $(ROOT)/usr/lbin

CMDS = admerr agefile disklabel diskumount drivename filecheck labelfsname \
largest lightenfs mktable oldfile rmjunk samedev selectdevice  seldevice\
selpattern spacewatch diskready

PARTS = $(CMDS) restorefiles

all:

install:	$(PARTS) 
	if [ ! -d $(DIR) ];		\
	then				\
		mkdir $(DIR);		\
		chmod 775 $(DIR);	\
		chgrp bin $(DIR);	\
		chown bin $(DIR);	\
	fi
	for i in $(PARTS); \
	do \
		$(INS) $$i $(DIR)/$$i; \
		chmod 755 $(DIR)/$$i; \
		chgrp sys $(DIR)/$$i; \
		chown root $(DIR)/$$i; \
	done

clean:

clobber:

