The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #68 from gasche/minor-fixes

Minor fixes

authored by

Jean-Christophe Filliatre and committed by
GitHub
391f51f7 b91eaa7d

+15 -3
+3
INSTALL.adoc
··· 7 7 8 8 ./configure 9 9 10 + (If the `./configure` file does not exist, 11 + run `autoconf` first.) 12 + 10 13 Compile with 11 14 12 15 make
+8 -2
README.adoc
··· 33 33 34 34 == How to link with OCamlgraph 35 35 36 - OCamlgraph is packaged as a single module `Graph`. Link is done as follows: 36 + You can use the `ocamlgraph` ocamlfind package: 37 + 38 + ocamlfind ocamlopt -package ocamlgraph ... 39 + 40 + (To produce an executable, also add the `-linkpkg` option.) 41 + 42 + If you want to invoke the compiler directly, OCamlgraph is packaged as 43 + a single module `Graph`. Linking is done as follows: 37 44 38 45 bytecode:: 39 46 ··· 42 49 native code:: 43 50 44 51 ocamlopt graph.cmxa <other files> 45 - 46 52 47 53 == Examples 48 54
+4 -1
opam
··· 25 25 [make "install-findlib"] 26 26 ] 27 27 remove: [["ocamlfind" "remove" "ocamlgraph"]] 28 - depends: ["ocamlfind"] 28 + depends: [ 29 + "conf-autoconf" 30 + "ocamlfind" {build} 31 + ] 29 32 depopts: [ 30 33 "lablgtk" 31 34 "conf-gnomecanvas"