X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fconfigure.in;fp=helm%2Focaml%2Fconfigure.in;h=d586e335c0030d2647ebfc2d05c7774493c57f8f;hb=298fa826610192b1a173c81b4ebf961c1c7e6609;hp=715a9d105109d2796fc55e58445a1ac995413e99;hpb=a6611bb09e2fa8629a022dbcd6c527ea8fd4df32;p=helm.git diff --git a/helm/ocaml/configure.in b/helm/ocaml/configure.in index 715a9d105..d586e335c 100644 --- a/helm/ocaml/configure.in +++ b/helm/ocaml/configure.in @@ -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 ])