Files
ADAndor/ADApp/andorSupport/Makefile
rivers 2983ea538d New file
git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@14342 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b
2012-01-04 23:42:10 +00:00

39 lines
1.2 KiB
Makefile
Executable File

TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================
# Note, the files in this directory were manually copied from the Andor SDK directories
# for Linux and Windows. The soft links for Linux were manually created.
# The extension on ATMCD32D.h was changed from .H to .h because the EPICS build system does
# not recognize .H
INC += ATMCD32D.h
INC += atmcdLXd.h
ifeq (win32-x86, $(findstring win32-x86, $(T_A)))
LIB_INSTALLS_WIN32 += ../ATMCD32M.lib
BIN_INSTALLS_WIN32 += ../atmcd32d.dll
else ifeq (windows-x64, $(findstring windows-x64, $(T_A)))
LIB_INSTALLS_WIN32 += ../atmcd64m.lib
BIN_INSTALLS_WIN32 += ../atmcd64d.dll
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
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
endif
#=============================
include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE