]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/matitac.ml
- cleanup
[helm.git] / matita / matita / matitac.ml
index 83ab74439129e005717d987083b8bdbbb9b2a908..13b2aeb2fe1bccf216b5cd848913be29fcc2b80e 100644 (file)
@@ -57,7 +57,7 @@ let main_compiler () =
   if system_mode then HLog.message "Compiling in system space";
   (* here we go *)
   if not (Helm_registry.get_bool "matita.verbose") then MatitaMisc.shutup ();
-  if MatitacLib.Make.make root target then 
+  if MatitaEngine.Make.make root target then 
     (HLog.message "Compilation successful"; 0)
   else
     (HLog.message "Compilation failed"; 1)
@@ -68,7 +68,6 @@ let main () =
   let bin = Filename.basename Sys.argv.(0) in
   if      Pcre.pmatch ~pat:"^matitadep"    bin then Matitadep.main ()
   else if Pcre.pmatch ~pat:"^matitaclean"  bin then Matitaclean.main ()
-  else if Pcre.pmatch ~pat:"^matitawiki"   bin then MatitaWiki.main ()
   else exit (main_compiler ())
 ;;