about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Carbonetto2017-05-31 15:12:19 -0500
committerPeter Carbonetto2017-05-31 15:12:19 -0500
commitf28b8531d135a948a5858844c6b6ce2bbfcf6813 (patch)
tree0843cf7823dc84a3bae5b89fce84951066e788c9 /Makefile
parent38de84d5d6e72728c06a57f8eeea0bb975f7192e (diff)
downloadpangemma-f28b8531d135a948a5858844c6b6ce2bbfcf6813.tar.gz
Removed WITH_LAPACK compile/build option.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 618fb6b..5bb8748 100644
--- a/Makefile
+++ b/Makefile
@@ -4,14 +4,12 @@
 #       Unix / Linux               	LNX
 #       Mac                        	MAC
 # Compilation options
-#       link to LAPACK              WITH_LAPACK
 #       32-bit binary        		FORCE_32BIT
 #       dynamic compilation    		FORCE_DYNAMIC
 
 # Set this variable to either LNX or MAC
 SYS = LNX
 # Leave blank after "=" to disable; put "= 1" to enable
-# Disable WITH_LAPACK option can slow computation speed significantly and is not recommended
 WITH_LAPACK = 1
 FORCE_32BIT = 
 FORCE_DYNAMIC = 
@@ -53,7 +51,6 @@ HDR += $(SRC_DIR)/param.h $(SRC_DIR)/gemma.h $(SRC_DIR)/io.h $(SRC_DIR)/lm.h $(S
 
 ifdef WITH_LAPACK
   OBJS += $(SRC_DIR)/lapack.o
-  CPPFLAGS += -DWITH_LAPACK
 ifeq ($(SYS), MAC)
   LIBS += $(LIBS_MAC_D_LAPACK)
 else