sig
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 = {
configure : BaseSetup.std_args_fun;
build : BaseSetup.std_args_fun;
doc : (OASISTypes.doc, unit) BaseSetup.section_args_fun list;
test : (OASISTypes.test, float) BaseSetup.section_args_fun list;
install : BaseSetup.std_args_fun;
uninstall : BaseSetup.std_args_fun;
clean : BaseSetup.std_args_fun list;
clean_doc : (OASISTypes.doc, unit) BaseSetup.section_args_fun list;
clean_test : (OASISTypes.test, unit) BaseSetup.section_args_fun list;
distclean : BaseSetup.std_args_fun list;
distclean_doc : (OASISTypes.doc, unit) BaseSetup.section_args_fun list;
distclean_test : (OASISTypes.test, unit) BaseSetup.section_args_fun list;
package : OASISTypes.package;
version : string;
}
val configure : BaseSetup.t -> OASISTypes.arg array -> unit
val build : BaseSetup.t -> OASISTypes.arg array -> unit
val doc : BaseSetup.t -> OASISTypes.arg array -> unit
val test : BaseSetup.t -> OASISTypes.arg array -> unit
val install : BaseSetup.t -> OASISTypes.arg array -> unit
val uninstall : BaseSetup.t -> OASISTypes.arg array -> unit
val clean : BaseSetup.t -> OASISTypes.arg array -> unit
val distclean : BaseSetup.t -> OASISTypes.arg array -> unit
val reinstall : BaseSetup.t -> OASISTypes.arg array -> unit
val all : BaseSetup.t -> OASISTypes.arg array -> unit
val version : BaseSetup.t -> OASISTypes.arg array -> unit
val setup : BaseSetup.t -> unit
val default_filename : OASISTypes.host_filename
val find : OASISPlugin.context_act -> OASISFileTemplate.template
val of_package :
OASISTypes.package -> OASISPlugin.context_act * BaseSetup.t
end