From 77b197bc93c745a1bfb82f2d425e8ef7dec7f221 Mon Sep 17 00:00:00 2001 From: Christoph Conrads Date: Thu, 10 Aug 2017 12:47:18 -0400 Subject: [PATCH] Make: fix installation instructions The installation instructions as shown after successfully compiling OpenBLAS are wrong because this arguments used during compilation have to be provided to Make again. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1b9bcb1..ce3f4b8 100644 --- a/Makefile +++ b/Makefile @@ -81,8 +81,9 @@ ifeq ($(OSNAME), Darwin) @echo "install_name_tool -id /new/absolute/path/to/$(LIBDYNNAME) $(LIBDYNNAME)" endif @echo - @echo "To install the library, you can run \"make PREFIX=/path/to/your/installation install\"." - @echo + @echo "To install the library, you can run" + @echo " make PREFIX=/path/to/your/installation install" + @echo "where '' is the set of argument used for compilation." shared : ifndef NO_SHARED -- 2.7.4