aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c412ee3cde303372a7b14e290916fb4690f790ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CXX=g++
CC=gcc
RM = rm
CXXFLAGS=-std=c++11 -O3
GSL_FLAGS:=$(shell pkg-config --libs gsl)

stratified_sampling: rtnorm.o stratified_sampling.o
	$(CXX) $^ -o $@ $(GSL_FLAGS)

test: test.o mt19937.o
	$(CXX) $^ -o $@

clean:
	-$(RM) -f *.o test stratified_sampling