aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPjotr Prins2018-10-14 05:56:45 +0000
committerPjotr Prins2018-10-14 05:56:45 +0000
commitb7275cd0d8631970b9718d635b904f0464be0bda (patch)
tree26eb8e807208e5417d63b0ae49275beafb86d3ae /Makefile
parent93bdcb038b74b311d3a040f44606c25f5f9b20f9 (diff)
downloadpangemma-b7275cd0d8631970b9718d635b904f0464be0bda.tar.gz
Makefile: remove RPATH
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d3c218f..d30eb45 100644
--- a/Makefile
+++ b/Makefile
@@ -148,10 +148,10 @@ ifdef DEBUG
# Clang does not like this switch
CPPFLAGS += -Og
endif
- CPPFLAGS += -g $(GCC_FLAGS) $(GSL_INCLUDE_PATH) -isystem$(EIGEN_INCLUDE_PATH) -Icontrib/catch-1.9.7 -Isrc $(RPATH)
+ CPPFLAGS += -g $(GCC_FLAGS) $(GSL_INCLUDE_PATH) -isystem$(EIGEN_INCLUDE_PATH) -Icontrib/catch-1.9.7 -Isrc
else
# release mode
- CPPFLAGS += -DNDEBUG -O3 $(GCC_FLAGS) $(GSL_INCLUDE_PATH) -isystem$(EIGEN_INCLUDE_PATH) -Icontrib/catch-1.9.7 -Isrc $(RPATH)
+ CPPFLAGS += -DNDEBUG -O3 $(GCC_FLAGS) $(GSL_INCLUDE_PATH) -isystem$(EIGEN_INCLUDE_PATH) -Icontrib/catch-1.9.7 -Isrc
endif
ifdef PROFILING