#
# Makefile for Doc 
#
# $Id: Makefile,v 1.11 2004/11/02 21:16:35 graziano Exp $
#

# include common variables
include ../Makedefs

DIST_FILES	=		Makefile \
				Copyright \
				protocol.html \
				README.NWSlapd \
				nws_verify \
				clique_verify \
				users_guide.html

DOCS 		= 		users_guide.html

.PHONY: all clean dist install

all clean lib pure install:

install:
	@$(CP) *.3 $(mandir)/man3
	@$(CP) *.7 $(mandir)/man7

dist:
	@$(INSTALL) -d $(DIST_ROOT)/Doc
	@$(CP) $(DIST_FILES) $(DIST_ROOT)/Doc
	@$(CP) *.3 *.7 $(DIST_ROOT)/Doc

