]> matita.cs.unibo.it Git - helm.git/commitdiff
It now exits gracefully after an End-of-file.
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 6 Dec 2001 08:59:30 +0000 (08:59 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 6 Dec 2001 08:59:30 +0000 (08:59 +0000)
helm/proofChecker/Makefile
helm/proofChecker/proofChecker.ml

index 8cea8c8dc6dafcb895d26b3eb1dd5a371f32fda4..107d5699e4295fe025c1470fe18ace5aab84d55e 100644 (file)
@@ -9,8 +9,8 @@ OCAMLDEP = ocamldep
 LIBRARIES = $(shell ocamlfind query -recursive -predicates "byte $(PREDICATES)" -format "%d/%a" $(REQUIRES))
 LIBRARIES_OPT = $(shell ocamlfind query -recursive -predicates "native $(PREDICATES)" -format "%d/%a" $(REQUIRES))
 
-all: proofChecker
-opt: proofChecker.opt
+all: $(PROOFCHECKEROBJS) proofChecker
+opt: $(PROOFCHECKEROBJS:.cmo=.cmx) proofChecker.opt
 
 DEPOBJS = proofChecker.ml
 
index 1c7245164147eb8227b4ffb1c86418a6a13cf867..d7cf692849933d6a51fb0ac07b1b73ee882f0129 100644 (file)
@@ -39,18 +39,22 @@ List of options:"
       exit (-1)
      end
   ) usage_msg ;
-  while true do
-   begin
-    try
-     CicTypeChecker.typecheck (UriManager.uri_of_string (read_line ()))
-    with
-     e ->
-      print_newline() ;
-      flush stdout ;
-      raise e
-   end ;
-   print_endline "END"
-  done
+  try
+   while true do
+    begin
+     try
+      CicTypeChecker.typecheck (UriManager.uri_of_string (read_line ()))
+     with
+        End_of_file -> raise End_of_file
+      | e ->
+       print_newline() ;
+       flush stdout ;
+       raise e
+    end ;
+    print_endline "END"
+   done
+  with
+   End_of_file -> ()
 ;;
 
 CicCooking.init() ;