aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBertrand <bertrand.horel@gmail.com>2016-02-06 19:32:06 +0000
committerBertrand <bertrand.horel@gmail.com>2016-02-06 19:32:06 +0000
commit22358d075a89d44dbe8ef901a0a42d2c3f8e285a (patch)
tree9b22d4b0f4bb7131ed37ddd9973a23845a9109ef /Makefile
parent65a9710eb66dbc00d4c4962467b753f62e7fcffe (diff)
downloadprojet_C++-22358d075a89d44dbe8ef901a0a42d2c3f8e285a.tar.gz
encapsulage du stratified sampling
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c412ee3..62e9c4e 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,11 @@ RM = rm
CXXFLAGS=-std=c++11 -O3
GSL_FLAGS:=$(shell pkg-config --libs gsl)
-stratified_sampling: rtnorm.o stratified_sampling.o
+main: main.o rtnorm.o stratified_sampling.o
$(CXX) $^ -o $@ $(GSL_FLAGS)
test: test.o mt19937.o
$(CXX) $^ -o $@
clean:
- -$(RM) -f *.o test stratified_sampling
+ -$(RM) -f *.o test stratified_sampling main