···7788 ./configure
991010+(If the `./configure` file does not exist,
1111+run `autoconf` first.)
1212+1013Compile with
11141215 make
+8-2
README.adoc
···33333434== How to link with OCamlgraph
35353636-OCamlgraph is packaged as a single module `Graph`. Link is done as follows:
3636+You can use the `ocamlgraph` ocamlfind package:
3737+3838+ ocamlfind ocamlopt -package ocamlgraph ...
3939+4040+(To produce an executable, also add the `-linkpkg` option.)
4141+4242+If you want to invoke the compiler directly, OCamlgraph is packaged as
4343+a single module `Graph`. Linking is done as follows:
37443845bytecode::
3946···4249native code::
43504451 ocamlopt graph.cmxa <other files>
4545-46524753== Examples
4854