aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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