summaryrefslogtreecommitdiff
path: root/Makefile.vc
diff options
context:
space:
mode:
authorPaul Zimmermann <paul.zimmermann@inria.fr>2010-05-05 20:35:05 +0000
committerPaul Zimmermann <paul.zimmermann@inria.fr>2010-05-05 20:35:05 +0000
commit945db9911fc32aaa710f128db50a0c3a5f5bb943 (patch)
tree8205437c39a52fdbf18604a00105c614db6249f4 /Makefile.vc
parentf3bcd5d03e2635049220be13ed42dc6438662c39 (diff)
downloadmpc-git-945db9911fc32aaa710f128db50a0c3a5f5bb943.tar.gz
[Makefile.vc] patch from Mickael Gastineau: memory.c was missing in the line
TESTCOMPILE git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/mpc/trunk@762 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'Makefile.vc')
-rw-r--r--Makefile.vc7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile.vc b/Makefile.vc
index 09833fc..afd6b16 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -1,7 +1,7 @@
# Makefile for the MPC library (Windows version).
#
-# Copyright (C) 2002, 2004, 2005, 2007, 2008, 2009 Andreas Enge, Mickael Gastineau, Paul Zimmermann
+# Copyright (C) 2002, 2004, 2005, 2007, 2008, 2009, 2010 Andreas Enge, Mickael Gastineau, Paul Zimmermann
#
# This file is part of the MPC Library.
#
@@ -68,7 +68,7 @@ INCLUDES = /I$(DIRMPC) /I$(GMPDIR)\include /I$(MPFR)\include
CKERNELFLAGS = $(CDEFAULTFLAGS) $(GMPMUSTBEDLL) $(INCLUDES)
CFLAGS = $(CKERNELFLAGS) /D__MPC_WITHIN_MPC /D_GMP_IEEE_FLOATS /DHAVE_CONFIG_H
-TESTCOMPILE=$(CC) $(CKERNELFLAGS) $(DIRMPCTESTS)\tgeneric.c $(DIRMPCTESTS)\comparisons.c $(DIRMPCTESTS)\read_data.c $(DIRMPCTESTS)\random.c $(DIRMPCTESTS)
+TESTCOMPILE=$(CC) $(CKERNELFLAGS) $(DIRMPCTESTS)\tgeneric.c $(DIRMPCTESTS)\comparisons.c $(DIRMPCTESTS)\memory.c $(DIRMPCTESTS)\read_data.c $(DIRMPCTESTS)\random.c $(DIRMPCTESTS)
MIDTESTCOMPILE=/link /out:$(DIRMPCTESTS)
ENDTESTCOMPILE=/LIBPATH:"$(GMPDIR)\lib" libmpc.lib libmpfr.lib libgmp.lib
@@ -391,6 +391,3 @@ test :
@echo --------------------------------------------------
@echo All tests passed
@echo --------------------------------------------------
-
-
-