Unify configure files with the other V4 modules

This commit is contained in:
Andrew Johnson
2014-04-10 15:53:36 -05:00
parent 333bbca2f2
commit 2d450bdd5b
16 changed files with 82 additions and 168 deletions

View File

@ -14,26 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
#CHECK_RELEASE = YES CHECK_RELEASE = WARN
# Set this when you only want to compile this application
# for a subset of the cross-compiled target architectures
# that Base is built for.
#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
# Set this when your IOC and the host use different paths -include $(TOP)/../configure/CONFIG_SITE.local
# to access the application. This will be needed to boot -include $(TOP)/../../CONFIG_SITE.local
# from a Microsoft FTP server or with some NFS mounts.
# You must rebuild in the iocBoot directory for this to
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG.local

View File

@ -16,8 +16,9 @@
# EPICS V4 Developers: Do not edit the locations in this file! # EPICS V4 Developers: Do not edit the locations in this file!
# #
# Create a file RELEASE.local pointing to your places # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# for the dependencies, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /path/to/epics/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVDATA = /path/to/epics/pvDataCPP # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP # PVCOMMON = /path/to/epics/pvCommonCPP
@ -27,14 +28,14 @@
# use the following definitions: # use the following definitions:
PVDATABASE = $(TOP)/.. PVDATABASE = $(TOP)/..
-include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
-include $(TOP)/../../RELEASE.local
# If you copied this example from pvDatabaseCPP to be built as a # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define # standalone TOP, adjust and use the following definitions:
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local], #PVDATABASE = /path/to/epics/pvDatabaseCPP
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local #-include $(TOP)/configure/RELEASE.local
#-include $(TOP)/../RELEASE.local

View File

@ -14,14 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
CHECK_RELEASE = WARN CHECK_RELEASE = YES
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local -include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG_SITE.local -include $(TOP)/../CONFIG.local

View File

@ -6,3 +6,4 @@ TARGETS = $(CONFIG_TARGETS)
CONFIGS += $(subst ../,,$(wildcard $(CONFIG_INSTALLS))) CONFIGS += $(subst ../,,$(wildcard $(CONFIG_INSTALLS)))
include $(TOP)/configure/RULES include $(TOP)/configure/RULES

View File

@ -18,11 +18,11 @@
# #
# Create a file RELEASE.local pointing to your PVASRV, PVACCESS, # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# PVDATA, PVCOMMON and EPICS_BASE build directories, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /home/install/epicsV4/pvaSrvCPP # PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /home/install/epicsV4/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVCOMMON = /home/install/epicsV4/pvCommonCPP # PVDATA = /path/to/epics/pvDataCPP
# PVDATA = /home/install/epicsV4/pvDataCPP # PVCOMMON = /path/to/epics/pvCommonCPP
# EPICS_BASE = /home/install/epics/base # EPICS_BASE = /path/to/epics/base
-include $(TOP)/configure/RELEASE.local -include $(TOP)/configure/RELEASE.local
-include $(TOP)/../RELEASE.local -include $(TOP)/../RELEASE.local

View File

@ -14,27 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
#CHECK_RELEASE = YES CHECK_RELEASE = WARN
# Set this when you only want to compile this application
# for a subset of the cross-compiled target architectures
# that Base is built for.
#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
# Set this when your IOC and the host use different paths
# to access the application. This will be needed to boot
# from a Microsoft FTP server or with some NFS mounts.
# You must rebuild in the iocBoot directory for this to
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../configure/CONFIG_SITE.local -include $(TOP)/../configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG.local -include $(TOP)/../../CONFIG_SITE.local

View File

@ -16,8 +16,9 @@
# EPICS V4 Developers: Do not edit the locations in this file! # EPICS V4 Developers: Do not edit the locations in this file!
# #
# Create a file RELEASE.local pointing to your places # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# for the dependencies, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /path/to/epics/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVDATA = /path/to/epics/pvDataCPP # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP # PVCOMMON = /path/to/epics/pvCommonCPP
@ -26,17 +27,17 @@
# If this example is built in a directory under pvDatabaseCPP, # If this example is built in a directory under pvDatabaseCPP,
# use the following definitions: # use the following definitions:
PVDATABASE = $(TOP)/..
PVDATABASETEST = $(TOP)/../test PVDATABASETEST = $(TOP)/../test
-include $(TOP)/../../RELEASE.local PVDATABASE = $(TOP)/..
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
-include $(TOP)/../../RELEASE.local
# If you copied this example from pvDatabaseCPP to be built as a # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define # standalone TOP, adjust and use the following definitions:
# PVDATABASE = /path/to/epics/pvDatabaseCPP
#PVDATABASETEST = /path/to/epics/pvDatabaseCPP/test #PVDATABASETEST = /path/to/epics/pvDatabaseCPP/test
# in the appropriate RELEASE[.local], #PVDATABASE = /path/to/epics/pvDatabaseCPP
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local #-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local #-include $(TOP)/configure/RELEASE.local

View File

@ -14,26 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
#CHECK_RELEASE = YES CHECK_RELEASE = WARN
# Set this when you only want to compile this application
# for a subset of the cross-compiled target architectures
# that Base is built for.
#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
# Set this when your IOC and the host use different paths -include $(TOP)/../configure/CONFIG_SITE.local
# to access the application. This will be needed to boot -include $(TOP)/../../CONFIG_SITE.local
# from a Microsoft FTP server or with some NFS mounts.
# You must rebuild in the iocBoot directory for this to
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG.local

View File

@ -16,8 +16,9 @@
# EPICS V4 Developers: Do not edit the locations in this file! # EPICS V4 Developers: Do not edit the locations in this file!
# #
# Create a file RELEASE.local pointing to your places # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# for the dependencies, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /path/to/epics/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVDATA = /path/to/epics/pvDataCPP # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP # PVCOMMON = /path/to/epics/pvCommonCPP
@ -27,14 +28,14 @@
# use the following definitions: # use the following definitions:
PVDATABASE = $(TOP)/.. PVDATABASE = $(TOP)/..
-include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
-include $(TOP)/../../RELEASE.local
# If you copied this example from pvDatabaseCPP to be built as a # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define # standalone TOP, adjust and use the following definitions:
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local], #PVDATABASE = /path/to/epics/pvDatabaseCPP
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local #-include $(TOP)/configure/RELEASE.local
#-include $(TOP)/../RELEASE.local

View File

@ -14,26 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
#CHECK_RELEASE = YES CHECK_RELEASE = WARN
# Set this when you only want to compile this application
# for a subset of the cross-compiled target architectures
# that Base is built for.
#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
# Set this when your IOC and the host use different paths -include $(TOP)/../configure/CONFIG_SITE.local
# to access the application. This will be needed to boot -include $(TOP)/../../CONFIG_SITE.local
# from a Microsoft FTP server or with some NFS mounts.
# You must rebuild in the iocBoot directory for this to
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG.local

View File

@ -16,8 +16,9 @@
# EPICS V4 Developers: Do not edit the locations in this file! # EPICS V4 Developers: Do not edit the locations in this file!
# #
# Create a file RELEASE.local pointing to your places # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# for the dependencies, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /path/to/epics/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVDATA = /path/to/epics/pvDataCPP # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP # PVCOMMON = /path/to/epics/pvCommonCPP
@ -26,17 +27,17 @@
# If this example is built in a directory under pvDatabaseCPP, # If this example is built in a directory under pvDatabaseCPP,
# use the following definitions: # use the following definitions:
PVDATABASE = $(TOP)/..
PVDATABASETEST = $(TOP)/../test PVDATABASETEST = $(TOP)/../test
-include $(TOP)/../../RELEASE.local PVDATABASE = $(TOP)/..
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
-include $(TOP)/../../RELEASE.local
# If you copied this example from pvDatabaseCPP to be built as a # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define # standalone TOP, adjust and use the following definitions:
# PVDATABASE = /path/to/epics/pvDatabaseCPP
#PVDATABASETEST = /path/to/epics/pvDatabaseCPP/test #PVDATABASETEST = /path/to/epics/pvDatabaseCPP/test
# in the appropriate RELEASE[.local], #PVDATABASE = /path/to/epics/pvDatabaseCPP
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local #-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local #-include $(TOP)/configure/RELEASE.local

View File

@ -14,26 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
#CHECK_RELEASE = YES CHECK_RELEASE = WARN
# Set this when you only want to compile this application
# for a subset of the cross-compiled target architectures
# that Base is built for.
#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
# Set this when your IOC and the host use different paths -include $(TOP)/../configure/CONFIG_SITE.local
# to access the application. This will be needed to boot -include $(TOP)/../../CONFIG_SITE.local
# from a Microsoft FTP server or with some NFS mounts.
# You must rebuild in the iocBoot directory for this to
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG.local

View File

@ -16,8 +16,9 @@
# EPICS V4 Developers: Do not edit the locations in this file! # EPICS V4 Developers: Do not edit the locations in this file!
# #
# Create a file RELEASE.local pointing to your places # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# for the dependencies, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /path/to/epics/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVDATA = /path/to/epics/pvDataCPP # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP # PVCOMMON = /path/to/epics/pvCommonCPP
@ -27,14 +28,14 @@
# use the following definitions: # use the following definitions:
PVDATABASE = $(TOP)/.. PVDATABASE = $(TOP)/..
-include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
-include $(TOP)/../../RELEASE.local
# If you copied this example from pvDatabaseCPP to be built as a # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define # standalone TOP, adjust and use the following definitions:
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local], #PVDATABASE = /path/to/epics/pvDatabaseCPP
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local #-include $(TOP)/configure/RELEASE.local
#-include $(TOP)/../RELEASE.local

View File

@ -14,26 +14,11 @@
# Set CHECK_RELEASE to NO to disable checking completely. # Set CHECK_RELEASE to NO to disable checking completely.
# Set CHECK_RELEASE to WARN to perform consistency checking but # Set CHECK_RELEASE to WARN to perform consistency checking but
# continue building anyway if conflicts are found. # continue building anyway if conflicts are found.
#CHECK_RELEASE = YES CHECK_RELEASE = YES
# Set this when you only want to compile this application
# for a subset of the cross-compiled target architectures
# that Base is built for.
#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040
# To install files into a location other than $(TOP) define # To install files into a location other than $(TOP) define
# INSTALL_LOCATION here. # INSTALL_LOCATION here.
#INSTALL_LOCATION=</path/name/to/install/top> #INSTALL_LOCATION=</path/name/to/install/top>
# Set this when your IOC and the host use different paths -include $(TOP)/../configure/CONFIG_SITE.local
# to access the application. This will be needed to boot -include $(TOP)/../../CONFIG.local
# from a Microsoft FTP server or with some NFS mounts.
# You must rebuild in the iocBoot directory for this to
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>
INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I $(INSTALL_LOCATION)/include
-include $(TOP)/configure/CONFIG_SITE.local
-include $(TOP)/../CONFIG.local

View File

@ -6,3 +6,4 @@ TARGETS = $(CONFIG_TARGETS)
CONFIGS += $(subst ../,,$(wildcard $(CONFIG_INSTALLS))) CONFIGS += $(subst ../,,$(wildcard $(CONFIG_INSTALLS)))
include $(TOP)/configure/RULES include $(TOP)/configure/RULES

View File

@ -16,8 +16,9 @@
# EPICS V4 Developers: Do not edit the locations in this file! # EPICS V4 Developers: Do not edit the locations in this file!
# #
# Create a file RELEASE.local pointing to your places # Create a file RELEASE.local pointing to your PVASRV, PVACCESS,
# for the dependencies, e.g. # PVDATA, PVCOMMON and EPICS_BASE build directories, e.g.
# PVASRV = /path/to/epics/pvaSrvCPP
# PVACCESS = /path/to/epics/pvAccessCPP # PVACCESS = /path/to/epics/pvAccessCPP
# PVDATA = /path/to/epics/pvDataCPP # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP # PVCOMMON = /path/to/epics/pvCommonCPP
@ -27,14 +28,14 @@
# use the following definitions: # use the following definitions:
PVDATABASE = $(TOP)/.. PVDATABASE = $(TOP)/..
-include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
-include $(TOP)/../../RELEASE.local
# If you copied these tests from pvDatabaseCPP to be built as a # If you copied these tests from pvDatabaseCPP to be built as a
# standalone TOP, define # standalone TOP, adjust and use the following definitions:
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local], #PVDATABASE = /path/to/epics/pvDatabaseCPP
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local #-include $(TOP)/configure/RELEASE.local
#-include $(TOP)/../RELEASE.local