# Makefile	anidel@mikonos.dia.unisa.it 15/02/96 11:15

#
# Please make no change to the lines below unless you know what are you doing
#

all:
	@echo Nothing to do for all...

install:
	@echo Installing preformatted manuals...
	$(INSTALL) -m 755 -o $(OWNER) -g $(GROUP) -d $(MANDIR)/man1
	$(INSTALL) -m 755 -o $(OWNER) -g $(GROUP) -d $(MANDIR)/man8
	@echo Section 1 manuals...
	@nroff -man passwd.1 | gzip -9 -c > $(MANDIR)/man1/passwd.1.gz
	@echo passwd.1 done,
	@nroff -man tcfslogin.1 | gzip -9 -c > $(MANDIR)/man1/tcfslogin.1.gz
	@echo tcfslogin.1 done,
	@nroff -man tcfslogout.1 | gzip -9 -c > $(MANDIR)/man1/tcfslogout.1.gz
	@echo tcfslogout.1 done,
	@nroff -man lsecure.1 | gzip -9 -c > $(MANDIR)/man1/lsecure.1.gz
	@echo lsecure.1 done,
	@nroff -man chsecure.1 | gzip -9 -c > $(MANDIR)/man1/chsecure.1.gz
	@echo chsecure.1 done,
	@echo Section 7 manuals...
	@nroff -man tcfs_intro.7 | gzip -9 -c > $(MANDIR)/man7/tcfs_intro.7.gz
	@echo tcfs_intro.7 done,
	@echo Section 8 manuals...
	@nroff -man tcfsgenkey.8 | gzip -9 -c > $(MANDIR)/man8/tcfsgenkey.8.gz
	@echo tcfsgenkey.8 done,
	@nroff -man mountd.8 | gzip -9 -c > $(MANDIR)/man8/mountd.8.gz
	@echo mountd.8 done,
	@nroff -man tcfsd.8 | gzip -9 -c > $(MANDIR)/man8/tcfsd.8.gz
	@echo tcfsd.8 done,
	@nroff -man tcfsmount.8 | gzip -9 -c > $(MANDIR)/man8/tcfsmount.8.gz
	@echo tcfsmount.8 done,
	@nroff -man tcfsumount.8 | gzip -9 -c > $(MANDIR)/man8/tcfsumount.8.gz
	@echo tcfsumount.8 done.

clean:
	@echo Cleaning man dir...
	@rm -rf *.gz
