X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2FmatitamakeLib.mli;h=8f6fda2e47181aeed0a9550bbae8a6ee6aa3b8dd;hb=81ca7521b39937cf79056465e18b4666ce1f34ff;hp=4aaab47b13f4eaf8c9ea26ad14d2f0a4ad6a4b28;hpb=7f2444c2670cadafddd8785b687ef312158376b0;p=helm.git diff --git a/matita/matitamakeLib.mli b/matita/matitamakeLib.mli index 4aaab47b1..8f6fda2e4 100644 --- a/matita/matitamakeLib.mli +++ b/matita/matitamakeLib.mli @@ -29,13 +29,17 @@ type development * ask matitamake to recorder [dir] as the root for thedevelopment [name] *) val initialize_development: string -> string -> development option (* make target [default all] *) -val build_development: ?target:string -> development -> bool +val build_development: ?matita_flags:string -> ?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 + ?matita_flags:string -> ?target:string -> (unit -> unit) -> development -> bool (* make clean *) -val clean_development: development -> bool -val clean_development_in_bg: (unit -> unit) -> development -> bool +val clean_development: ?matita_flags:string -> development -> bool +val clean_development_in_bg: ?matita_flags:string -> (unit -> unit) -> development -> bool + +val publish_development_in_bg: (unit -> unit) -> development -> bool +val publish_development: development -> bool + (* return the development that handles dir *) val development_for_dir: string -> development option (* return the development *) @@ -43,8 +47,8 @@ val development_for_name: string -> development option (* return the known list of name, development_root *) 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 +val destroy_development: ?matita_flags:string -> development -> unit +val destroy_development_in_bg: ?matita_flags:string -> (unit -> unit) -> development -> unit (* initiale internal data structures *) val initialize : unit -> unit (* gives back the root *) @@ -52,3 +56,7 @@ val root_for_development : development -> string (* gives back the name *) val name_for_development : development -> string +(** @return dot file for a given development, if it exists *) +val dot_for_development : development -> string option + +val normalize_path: string -> string