X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.in;h=78f980eea2e0d4da7a91630e24a6217d8de2a736;hb=2fecbba3804b3788af08786e580483dac9a45294;hp=859b5e8260379b5dbc8ce8ee9bb9c79792006f07;hpb=edc2d1ee7ef8e5b5716934673c3846a3c40e2ced;p=ocaml-bitstring.git diff --git a/Makefile.in b/Makefile.in index 859b5e8..78f980e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -15,7 +15,7 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# $Id: Makefile.in,v 1.2 2008-04-02 08:03:26 rjones Exp $ +# $Id: Makefile.in,v 1.3 2008-04-02 08:14:40 rjones Exp $ PACKAGE = @PACKAGE_NAME@ VERSION = @PACKAGE_VERSION@ @@ -30,6 +30,8 @@ OCAMLCPACKAGES = OCAMLOPTFLAGS = OCAMLOPTPACKAGES = +OCAMLDOCFLAGS = -html -sort + EXAMPLES = $(wildcard examples/*.ml) TESTS = $(patsubst %.ml,%,$(wildcard tests/*.ml)) @@ -80,7 +82,19 @@ clean: rm -f tests/*~ tests/*.cmi tests/*.cmo $(TESTS) rm -f examples/*~ +# Documentation. + +ifneq ($(OCAMLDOC),) +doc: + rm -rf html + mkdir html + $(OCAMLDOC) $(OCAMLDOCFLAGS) -d html bitmatch.mli bitmatch.ml +endif + +# Install. + install: + ocamlfind install bitmatch META *.mli *.cmi *.cmx *.cma *.cmxa *.a # Standard rules.