#
# Makefile for tout
#

tout:   tout.o
	cc -O tout.o -o tout

clean:;     rm -f tout tout.o

install:    tout
	csh -c "install -s tout /usr/local/bin"
	cp tout.1 /usr/man/manl/tout.l
	chmod 644 /usr/man/manl/tout.l
	make clean
