summaryrefslogtreecommitdiff
path: root/Makefile.vc
diff options
context:
space:
mode:
authorthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-06-29 12:13:43 +0000
committerthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-06-29 12:13:43 +0000
commitf3be04374b9cbb57c41e81245755ff5c376eca1b (patch)
tree876e8c63e6c7aaf0c257bd393035d34b4bebccc9 /Makefile.vc
parent316fadea81084c3d5b06c386da6a3068746c5686 (diff)
downloadmpc-f3be04374b9cbb57c41e81245755ff5c376eca1b.tar.gz
Makefile.vc: Update makefile for Windows adding the function mpc_pow (Thanks to Mickael Gastineau).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@620 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'Makefile.vc')
-rw-r--r--Makefile.vc4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.vc b/Makefile.vc
index bd05e05..d61705e 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -102,6 +102,7 @@ $(DIRMPC)\mul_ui.obj \
$(DIRMPC)\neg.obj \
$(DIRMPC)\norm.obj \
$(DIRMPC)\out_str.obj \
+$(DIRMPC)\pow.obj \
$(DIRMPC)\proj.obj \
$(DIRMPC)\random.obj \
$(DIRMPC)\random2.obj \
@@ -165,6 +166,7 @@ mul_ui.obj \
neg.obj \
norm.obj \
out_str.obj \
+pow.obj \
proj.obj \
random.obj \
random2.obj \
@@ -289,6 +291,8 @@ test :
cd $(DIRMPCTESTS) && tneg.exe && cd ..
$(TESTCOMPILE)tnorm.c $(MIDTESTCOMPILE)tnorm.exe $(ENDTESTCOMPILE)
cd $(DIRMPCTESTS) && tnorm.exe && cd ..
+ $(TESTCOMPILE)tpow.c $(MIDTESTCOMPILE)tpow.exe $(ENDTESTCOMPILE)
+ cd $(DIRMPCTESTS) && tpow.exe && cd ..
$(TESTCOMPILE)tprec.c $(MIDTESTCOMPILE)tprec.exe $(ENDTESTCOMPILE)
cd $(DIRMPCTESTS) && tprec.exe && cd ..
$(TESTCOMPILE)tproj.c $(MIDTESTCOMPILE)tproj.exe $(ENDTESTCOMPILE)