]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/configure.in
* .mli added where needed
[helm.git] / helm / ocaml / configure.in
index 715a9d105109d2796fc55e58445a1ac995413e99..d586e335c0030d2647ebfc2d05c7774493c57f8f 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(Makefile.common)
+AC_INIT(Makefile.in)
 
 AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no)
 if test $HAVE_OCAMLC = "no"; then
@@ -10,6 +10,18 @@ if test $HAVE_OCAMLFIND = "no"; then
   AC_MSG_ERROR(could not find ocamlfind in PATH, please make sure findlib is installed)
 fi
 
+AC_MSG_CHECKING("where to install the library")
+OCAMLFIND_DEST_DIR="/public/sacerdot/prova"
+AC_MSG_RESULT($OCAMLFIND_DEST_DIR)
+
+AC_MSG_CHECKING("where to install the META files")
+OCAMLFIND_META_DIR="/public/sacerdot/prova/META"
+AC_MSG_RESULT($OCAMLFIND_META_DIR)
+
+AC_SUBST(OCAMLFIND_DEST_DIR)
+AC_SUBST(OCAMLFIND_META_DIR)
+
 AC_OUTPUT([
   Makefile
+  Makefile.common
 ])