aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBertrand <bertrand.horel@gmail.com>2016-02-13 21:47:14 +0000
committerBertrand <bertrand.horel@gmail.com>2016-02-13 21:47:14 +0000
commit34f073125f5c458c5c76128344f1745779f631a0 (patch)
tree81f795059104f3d3b4e6cc4dd98c069082590db1 /Makefile
parent05651a194efe8ff535a672840630442df4ed69e1 (diff)
downloadprojet_C++-34f073125f5c458c5c76128344f1745779f631a0.tar.gz
début de randomised quasi Monte Carlo
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 425d8bd..6b87c38 100644
--- a/Makefile
+++ b/Makefile
@@ -14,5 +14,8 @@ main.o: stratified_sampling.o
test: test.o mt19937.o
$(CXX) $^ -o $@
+rqmc: rqmc.o
+ $(CXX) $^ -o $@ $(GSL_FLAGS)
+
clean:
-$(RM) -f *.o test stratified_sampling main