 #      $Source: /home/fergia/CVS//tcfs-openbsd/tcfslib-1.0.0/man/Makefile,v $
 #      $Revision: 1.1.1.1 $
 #      $Date: 2000/06/07 12:21:30 $
 #      $State: Exp $
 #      $Author: fergia $
 #      $Lockers$

MANDIR=          /usr/tcfs/man
MAN3 = tcfslib.3
MAN5 = cipher.conf.5 tcfspwdb.5 tcfsgpwdb.5 


install: 
	install -d -o root -g wheel -m755 $(MANDIR)/man3
	install -c -o root -g wheel -m644 $(MAN3) $(MANDIR)/man3
	install -d -o root -g wheel -m755 $(MANDIR)/man5
	install -c -o root -g wheel -m644 $(MAN5) $(MANDIR)/man5
 
uninstall:
	rm -f $(MANDIR)/man3/$(MAN3)
	rm -f $(MANDIR)/man5/$(MAN5)
	 
