TOPDIR = ..
include $(TOPDIR)/Makefile.template

all: doc

doc:
	$(MKDIR) html
	$(MKDIR) man
	$(OCAMLDOC) -I /usr/lib/ocaml/3.10.0 -html -d html -colorize-code $(TOPDIR)/$(SOURCEDIR)/*.mli
	sed -i 's/\(Hashtbl\.\w*\)/<a href=\"http:\/\/caml.inria.fr\/pub\/docs\/manual-ocaml\/libref\/\1.html\">\1<\/a>/g' html/Weaktbl.*
	$(OCAMLDOC) -man -d man -man-mini $(TOPDIR)/$(SOURCEDIR)/*.mli

clean: 
	$(RM) html man *~ .depend