#
# Makefile for APROPOS command for SGI IRIS 4D series workstations.
#		By: Paul Balyoz   [pab@naucse.cse.nau.edu]
#

# Where these shell scripts should go.  The DESTROOT variable can be set
# on the make command-line to be the root directory of other NFS clients.
BIN=${DESTROOT}/usr/local/bin

all:
	@echo 'All shell scripts; no building required.'
	@echo 'See Makefile, then type "make install".'

install:
	cp apropos ${BIN}
	chmod 755 ${BIN}/apropos
	chown bin ${BIN}/apropos
	chgrp bin ${BIN}/apropos
	cp makewhatis ${BIN}
	chmod 755 ${BIN}/makewhatis
	chown bin ${BIN}/makewhatis
	chgrp bin ${BIN}/makewhatis
	@echo 'Now that everything is installed, you should build the whatis'
	@echo 'database by running makewhatis before trying out apropos.'
