aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@serenitascapital.com>2016-02-01 10:28:07 -0500
committerGuillaume Horel <guillaume.horel@serenitascapital.com>2016-02-01 10:28:07 -0500
commit97a94f52af3eed72255989a8ec8e450899586a5b (patch)
treec3fb47e4e3f853f4b7e3df25371f578d18c080a0 /Makefile
parentfb87f832892a68c9674f206568ff89e26a2e6b3a (diff)
downloadprojet_C++-97a94f52af3eed72255989a8ec8e450899586a5b.tar.gz
better makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8080a50..2ffcd8f 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CXX=g++
CC=gcc
RM = rm
CXXFLAGS=-O3
-GSL_FLAGS=`pkg-config --libs gsl`
+GSL_FLAGS:=$(shell pkg-config --libs gsl)
stratified_sampling: rtnorm.o stratified_sampling.o
$(CXX) $^ -o $@ $(GSL_FLAGS)