]> matita.cs.unibo.it Git - helm.git/commitdiff
More complete bootstrapper.
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 28 Jun 2005 16:12:15 +0000 (16:12 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 28 Jun 2005 16:12:15 +0000 (16:12 +0000)
helm/matita/matitatop.bootstrap

index 5d6da169ec8163e0b35b32ba2c3311dde0c34542..a9538cf7daa0de0b67b6f4707b9c95b81f4528c8 100644 (file)
@@ -1,16 +1,34 @@
-#directory "../ocaml/cic_unification/"
-#directory "../ocaml/cic_proof_checking/"
+(* directories *)
+#directory "../ocaml/cic"
+#directory "../ocaml/cic_notation"
+#directory "../ocaml/cic_omdoc"
+#directory "../ocaml/cic_proof_checking"
+#directory "../ocaml/cic_textual_parser2"
+#directory "../ocaml/cic_transformations"
+#directory "../ocaml/cic_unification"
+#directory "../ocaml/getter"
+#directory "../ocaml/hbugs"
+#directory "../ocaml/mathql"
+#directory "../ocaml/mathql_generator"
+#directory "../ocaml/mathql_interpreter"
+#directory "../ocaml/metadata"
+#directory "../ocaml/paramodulation"
+#directory "../ocaml/registry"
+#directory "../ocaml/tactics"
+#directory "../ocaml/thread"
+#directory "../ocaml/urimanager"
+#directory "../ocaml/xml"
+#directory "../ocaml/xmldiff"
 
+(* custom printers *)
 #install_printer CicMetaSubst.fppsubst;;
-(*#install_printer CicMetaSubst.fppterm;;*)
+#install_printer CicMetaSubst.fppterm;;
 #install_printer CicMetaSubst.fppmetasenv;;
 
-let go = MatitacLib.go;;
-
+(* main *)
 let _ = 
   if Array.length Sys.argv > 1 then
     MatitacLib.main `TOPLEVEL
   else
-    go ()
+    MatitacLib.go ()
 ;;
-