gasche / manual-ocamlbuild

A new reference manual for the ocamlbuild tool
Other
67 stars 15 forks source link

how to split plugin into multiple files #24

Open agarwal opened 8 years ago

agarwal commented 8 years ago

Say I want this:

$ cat my_build_lib.ml 
let x = 42

$ cat myocamlbuild.ml 
let x = My_build_lib.x

Now, how can I compile the plugin?