summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2007-11-06 14:39:11 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2007-11-06 14:39:11 +0000
commit71dbbf5b60e1ba100b5d6f89d65fa5e7681873de (patch)
tree229b83e4c29c99a1bbcb13f7feae490028f97f73 /INSTALL
parent9046759483941d103b683a63e6e2d4e1df10e5a2 (diff)
downloadmpc-71dbbf5b60e1ba100b5d6f89d65fa5e7681873de.tar.gz
added makefile.vc for Windows, contributed by Mickael Gastineau
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@66 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL28
1 files changed, 27 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index d601a14..1403a69 100644
--- a/INSTALL
+++ b/INSTALL
@@ -43,4 +43,30 @@
to produce the documentation in DVI or Postscript format.
In case of difficulties, send a description of the problem to
-<enge@lix.polytechnique.fr, zimmerma@loria.fr>.
+<enge at lix dot polytechnique.fr, zimmerma at loria dot fr>
+(replace 'at' by '@', and 'dot' by '.').
+
+##############################################################################
+
+Note for Windows users:
+======================
+
+There is a special file makefile.vc for Windows, contributed by Mickael
+Gastineau. This file works both for the SDK from Visual Studio, and for that
+of Vista. To use it, simply replace "make" by "nmake /f makefile.vc" in the
+above instructions:
+
+compilation :
+nmake /f makefile.vc GMP=<gmp_install_dir> MPFR=<mpfr_install_dir>
+
+clean :
+nmake /f makefile.vc GMP=<gmp_install_dir> MPFR=<mpfr_install_dir> clean
+
+check :
+nmake /f makefile.vc GMP=<gmp_install_dir> MPFR=<mpfr_install_dir> check
+
+For any issue related to the makefile.vc file, please contact directly
+Mickael Gastineau at <gastineau at imcce dot fr> (replace 'at' by '@',
+and 'dot' by '.').
+
+