Clean up, don't force STATIC_BUILD on win32

git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@11854 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b
This commit is contained in:
rivers
2010-10-20 15:20:44 +00:00
parent 2c3d82c35f
commit 73a7d7dc58
+9 -1
View File
@@ -12,10 +12,18 @@ include $(TOP)/configure/CONFIG_APP
# before this takes effect.
#IOCS_APPL_TOP = <the top of the application as seen by the IOC>
STATIC_BUILD=YES
# We don't set STATIC_BUILD for WIN32 or Cygwin, use base to configure
ifeq (WIN32, $(OS_CLASS))
SHARED_LIBRARIES=YES
STATIC_BUILD=NO
endif
ifeq (Darwin, $(OS_CLASS))
STATIC_BUILD=NO
endif
ifeq (Linux, $(OS_CLASS))
STATIC_BUILD=YES
endif
ifeq (solaris, $(OS_CLASS))
STATIC_BUILD=YES
SHARED_LIBRARIES=NO
endif