#:ts=8
#
# $Id$
#
# Makefile CNCL doc/info
#
TOPDIR	= ../..

include $(TOPDIR)/make.conf

wwwdir = /source/info/www/data/doc/cncl


TEXI = arrays.texi cncl.texi container.texi eval.texi events.texi ezd.texi\
       fuzzy.texi manage.texi misc.texi random.texi template.texi unix.texi

INFO = cncl.info


all:	$(INFO)

cncl.info:	$(TEXI)
	makeinfo cncl.texi

cncl.dvi:	$(TEXI)
	texi2dvi cncl.texi

cncl.ps:	cncl.dvi
	dvips cncl -o
	
html:		cncl_toc.html

cncl_toc.html:	$(TEXI)
	texi2html -split_node -verbose cncl.texi
	

clean::
	rm -f *.aux *.log *.cp *.cps *.fn *.fns *.ky *.kys *.pg *.pgs
	rm -f *.toc *.tp *.tps *.vr *.vrs *.html

veryclean::
	rm -f *.aux *.log *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs
	rm -f *.toc *.tp *.tps *.vr *.vrs *.html
	rm -f cncl.info* *.dvi cncl.ps

install:
	cp cncl.info* $(infodir)

install-html:
	cp *.html $(wwwdir)
	
tests:

include $(TOPDIR)/make.common
