X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitamakeLib.mli;h=4aaab47b13f4eaf8c9ea26ad14d2f0a4ad6a4b28;hb=97c2d258a5c524eb5c4b85208899d80751a2c82f;hp=70712266804fc02d1a27f90b456140be81293f7b;hpb=b11d278a26840884692cdfb89e168081134d293f;p=helm.git diff --git a/helm/matita/matitamakeLib.mli b/helm/matita/matitamakeLib.mli index 707122668..4aaab47b1 100644 --- a/helm/matita/matitamakeLib.mli +++ b/helm/matita/matitamakeLib.mli @@ -30,8 +30,12 @@ type development val initialize_development: string -> string -> development option (* make target [default all] *) val build_development: ?target:string -> development -> bool +(* make target [default all], the refresh cb is called after every output *) +val build_development_in_bg: + ?target:string -> (unit -> unit) -> development -> bool (* make clean *) val clean_development: development -> bool +val clean_development_in_bg: (unit -> unit) -> development -> bool (* return the development that handles dir *) val development_for_dir: string -> development option (* return the development *) @@ -40,7 +44,11 @@ val development_for_name: string -> development option val list_known_developments: unit -> (string * string ) list (* cleans the development, forgetting about it *) val destroy_development: development -> unit +val destroy_development_in_bg: (unit -> unit) -> development -> unit (* initiale internal data structures *) val initialize : unit -> unit - +(* gives back the root *) +val root_for_development : development -> string +(* gives back the name *) +val name_for_development : development -> string