module BaseSetup: sig
.. end
Entry points for 'setup.ml'
Author(s): Sylvain Le Gall
type
std_args_fun = OASISTypes.package -> OASISTypes.arg array -> unit
type ('a, 'b)
section_args_fun = OASISTypes.name *
(OASISTypes.package ->
OASISTypes.common_section * 'a -> OASISTypes.arg array -> 'b)
type
t = {
}
val configure : t -> OASISTypes.arg array -> unit
Run the configure step.
val build : t -> OASISTypes.arg array -> unit
Run the build step.
val doc : t -> OASISTypes.arg array -> unit
Run the doc step: build all documents.
val test : t -> OASISTypes.arg array -> unit
Run the test step: run all tests.
val install : t -> OASISTypes.arg array -> unit
Run the install step.
val uninstall : t -> OASISTypes.arg array -> unit
Run the uninstall step.
val clean : t -> OASISTypes.arg array -> unit
Run the clean step.
val distclean : t -> OASISTypes.arg array -> unit
Run the distclean step.
val reinstall : t -> OASISTypes.arg array -> unit
Run the reinstall step: deinstall and install.
val all : t -> OASISTypes.arg array -> unit
Run all steps: configure, build, doc, test and install.
val version : t -> OASISTypes.arg array -> unit
Display OASIS version used to generate this setup.ml
val setup : t -> unit
The first function called when running 'setup.ml'.
val default_filename : OASISTypes.host_filename
Default filename for 'setup.ml'. Not exported
val find : OASISPlugin.context_act -> OASISFileTemplate.template
Get template 'setup.ml' file out of the plugin context.
Not exported.
val of_package : OASISTypes.package -> OASISPlugin.context_act * t
Create t
and plugin context from an OASIS package.
Not exported.