# << CHECKUSERS Makefile >>
# Version 1.00
#
# By Ken "Jigen" Hollis at Bitgate Software
# Copyright (C) 1995, Bitgate Software and OWDS, Inc.
#
# Read manual (README) for more information.

all:
	echo "Installing checkusers..."
	install -c checkusers /bin/checkusers
	echo "Installing checkusers manual..."
	install -c checkusers.1 /usr/man/man1
	echo "Installation complete."

install:
	echo "Installing checkusers..."
	install -c checkusers /bin/checkusers
	echo "Installation complete."

install.man:
	echo "Installing checkusers manual..."
	install -c checkusers.1 /usr/man/man1
	echo "Installation complete."

