From 824c3fd7cb4ae10b7fa8fe947f3bd69410a53f4c Mon Sep 17 00:00:00 2001 From: Mark Rivers Date: Tue, 18 Nov 2014 12:39:55 -0600 Subject: [PATCH] win32-x86 library was renamed by Andor to be lowercase; add shamrock library for Linux --- andorSupport/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/andorSupport/Makefile b/andorSupport/Makefile index 466649c..1d11a6e 100755 --- a/andorSupport/Makefile +++ b/andorSupport/Makefile @@ -14,7 +14,7 @@ INC += atmcdLXd.h INC += ShamrockCIF.h ifeq (win32-x86, $(findstring win32-x86, $(T_A))) -LIB_INSTALLS_WIN32 += ../os/win32-x86/ATMCD32M.lib +LIB_INSTALLS_WIN32 += ../os/win32-x86/atmcd32m.lib LIB_INSTALLS_WIN32 += ../os/win32-x86/ShamrockCIFm.lib else ifeq (windows-x64, $(findstring windows-x64, $(T_A))) @@ -24,10 +24,14 @@ LIB_INSTALLS_WIN32 += ../os/windows-x64/ShamrockCIFm.lib else ifeq (linux-x86_64, $(findstring linux-x86_64, $(T_A))) LIB_INSTALLS_Linux += ../os/linux-x86_64/libandor.so.2 LIB_INSTALLS_Linux += ../os/linux-x86_64/libandor.so +LIB_INSTALLS_Linux += ../os/linux-x86_64/libshamrock.so.2 +LIB_INSTALLS_Linux += ../os/linux-x86_64/libshamrock.so else ifeq (linux-x86, $(findstring linux-x86, $(T_A))) LIB_INSTALLS_Linux += ../os/linux-x86/libandor.so.2 LIB_INSTALLS_Linux += ../os/linux-x86/libandor.so +LIB_INSTALLS_Linux += ../os/linux-x86/libshamrock.so.2 +LIB_INSTALLS_Linux += ../os/linux-x86/libshamrock.so endif