#
#	@(#)Makefile	7.5 (ULTRIX)	10/30/92
#
# Normal sequence of events is: clean clobber sccsget all install
#

DESTROOT=
DESTDIR=${DESTROOT}/usr/sys/io/cam
CAMC= cam_config.c cam_debug.c sim_config.c

all:

clean:

clobber: clean
	sccs clean

sccsinfo:
	sccs info

sccsget:
	sccs get -s SCCS

install: instdirs inst

instdirs:
	-if [ ! -d ${DESTDIR} ] ;\
	then \
		mkdir ${DESTDIR}; \
		/etc/chown root ${DESTDIR}; \
		chgrp system ${DESTDIR}; \
		chmod 0755 ${DESTDIR}; \
	else true; \
	fi

inst:
	@echo Installing cam files.
	tar cFf - *.h ${CAMC} |(cd ${DESTDIR};tar xpf -; chmod ugo+r *)

