Improve RELEASE files to be slim, self-contained, portable - including test and examples

This commit is contained in:
Ralph Lange
2014-02-14 10:42:36 +01:00
parent 53c3901099
commit 876ec8062f
6 changed files with 141 additions and 176 deletions

View File

@ -1,11 +1,11 @@
# RELEASE - Location of external support modules # pvDatabaseCPP RELEASE - Location of external support modules
# #
# IF YOU MAKE ANY CHANGES to this file you must subsequently # IF YOU CHANGE this file or any file it includes you must
# do a "gnumake rebuild" in this application's top level # subsequently do a "gnumake rebuild" in the application's
# directory. # top level directory.
# #
# The build process does not check dependencies against files # The build process does not check dependencies against files
# that are outside this application, thus you should do a # that are outside this application, thus you should also do a
# "gnumake rebuild" in the top level directory after EPICS_BASE # "gnumake rebuild" in the top level directory after EPICS_BASE
# or any other external module pointed to below is rebuilt. # or any other external module pointed to below is rebuilt.
# #
@ -13,32 +13,17 @@
# RELEASE.$(EPICS_HOST_ARCH).Common # RELEASE.$(EPICS_HOST_ARCH).Common
# RELEASE.Common.$(T_A) # RELEASE.Common.$(T_A)
# RELEASE.$(EPICS_HOST_ARCH).$(T_A) # RELEASE.$(EPICS_HOST_ARCH).$(T_A)
# EPICS V4 Developers: Do not edit the locations in this file!
# #
# This file should ONLY define paths to other support modules, # Create a file RELEASE.local pointing to your PVCOMMON, PVDATA,
# or include statements that pull in similar RELEASE files. # PVACCESS, and EPICS_BASE build directories,
# Build settings that are NOT module paths should appear in a # and optionally GTEST e.g.
# CONFIG_SITE file. # PVCOMMON = /home/install/epicsV4/pvCommonCPP
# PVDATA = /home/install/epicsV4/pvDataCPP
# PVACCESS = /home/install/epicsV4/pvAccessCPP
# EPICS_BASE = /home/install/epics/base
# # GTEST not used
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top
# If using the sequencer, point SNCSEQ at its top directory:
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq
# EPICS_BASE usually appears last so other apps can override stuff:
# do not edit the locations in this file
# create RELEASE.local with the paths to your EPICS_BASE, PVDATA, and PVACCESS
# these default locations are needed for the BNL Jenkins server to work
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:
#RULES=/path/to/epics/support/module/rules/x-y
# Leave these in for the Jenkins build at BNL to work
EPICS_BASE=/home/install/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
PVACCESS=/home/mrk/hg/pvAccessCPP
# set your EPICS_BASE, PVDATA and PVACCESS paths in here
-include $(TOP)/../RELEASE.local -include $(TOP)/../RELEASE.local
-include $(TOP)/configure/RELEASE.local -include $(TOP)/configure/RELEASE.local

View File

@ -1,11 +1,11 @@
# RELEASE - Location of external support modules # pvDatabaseCPP/example RELEASE - Location of external support modules
# #
# IF YOU MAKE ANY CHANGES to this file you must subsequently # IF YOU CHANGE this file or any file it includes you must
# do a "gnumake rebuild" in this application's top level # subsequently do a "gnumake rebuild" in the application's
# directory. # top level directory.
# #
# The build process does not check dependencies against files # The build process does not check dependencies against files
# that are outside this application, thus you should do a # that are outside this application, thus you should also do a
# "gnumake rebuild" in the top level directory after EPICS_BASE # "gnumake rebuild" in the top level directory after EPICS_BASE
# or any other external module pointed to below is rebuilt. # or any other external module pointed to below is rebuilt.
# #
@ -13,32 +13,28 @@
# RELEASE.$(EPICS_HOST_ARCH).Common # RELEASE.$(EPICS_HOST_ARCH).Common
# RELEASE.Common.$(T_A) # RELEASE.Common.$(T_A)
# RELEASE.$(EPICS_HOST_ARCH).$(T_A) # RELEASE.$(EPICS_HOST_ARCH).$(T_A)
# EPICS V4 Developers: Do not edit the locations in this file!
# #
# This file should ONLY define paths to other support modules, # Create a file RELEASE.local pointing to your places
# or include statements that pull in similar RELEASE files. # for the dependencies, e.g.
# Build settings that are NOT module paths should appear in a # PVACCESS = /path/to/epics/pvAccessCPP
# CONFIG_SITE file. # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP
# EPICS_BASE = /path/to/epics/base
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top # If this example is built in a directory under pvDatabaseCPP,
# use the following definitions:
# If using the sequencer, point SNCSEQ at its top directory: PVDATABASE = $(TOP)/..
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq -include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local
# EPICS_BASE usually appears last so other apps can override stuff: # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local],
# and use the following definitions instead:
# do not edit the locations in this file #-include $(TOP)/../RELEASE.local
# create RELEASE.local with the paths to your EPICS_BASE, PVDATA, and PVACCESS #-include $(TOP)/configure/RELEASE.local
# these default locations are needed for the BNL Jenkins server to work
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:
#RULES=/path/to/epics/support/module/rules/x-y
# Leave these in for the Jenkins build at BNL to work
EPICS_BASE=/home/install/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
PVACCESS=/home/mrk/hg/pvAccessCPP
# set your EPICS_BASE, PVDATA and PVACCESS paths in here
-include $(TOP)/../RELEASE.local
-include $(TOP)/configure/RELEASE.local

View File

@ -1,11 +1,11 @@
# RELEASE - Location of external support modules # pvDatabaseCPP/example RELEASE - Location of external support modules
# #
# IF YOU MAKE ANY CHANGES to this file you must subsequently # IF YOU CHANGE this file or any file it includes you must
# do a "gnumake rebuild" in this application's top level # subsequently do a "gnumake rebuild" in the application's
# directory. # top level directory.
# #
# The build process does not check dependencies against files # The build process does not check dependencies against files
# that are outside this application, thus you should do a # that are outside this application, thus you should also do a
# "gnumake rebuild" in the top level directory after EPICS_BASE # "gnumake rebuild" in the top level directory after EPICS_BASE
# or any other external module pointed to below is rebuilt. # or any other external module pointed to below is rebuilt.
# #
@ -13,32 +13,28 @@
# RELEASE.$(EPICS_HOST_ARCH).Common # RELEASE.$(EPICS_HOST_ARCH).Common
# RELEASE.Common.$(T_A) # RELEASE.Common.$(T_A)
# RELEASE.$(EPICS_HOST_ARCH).$(T_A) # RELEASE.$(EPICS_HOST_ARCH).$(T_A)
# EPICS V4 Developers: Do not edit the locations in this file!
# #
# This file should ONLY define paths to other support modules, # Create a file RELEASE.local pointing to your places
# or include statements that pull in similar RELEASE files. # for the dependencies, e.g.
# Build settings that are NOT module paths should appear in a # PVACCESS = /path/to/epics/pvAccessCPP
# CONFIG_SITE file. # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP
# EPICS_BASE = /path/to/epics/base
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top # If this example is built in a directory under pvDatabaseCPP,
# use the following definitions:
# If using the sequencer, point SNCSEQ at its top directory: PVDATABASE = $(TOP)/..
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq -include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local
# EPICS_BASE usually appears last so other apps can override stuff: # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local],
# and use the following definitions instead:
# do not edit the locations in this file #-include $(TOP)/../RELEASE.local
# create RELEASE.local with the paths to your EPICS_BASE, PVDATA, and PVACCESS #-include $(TOP)/configure/RELEASE.local
# these default locations are needed for the BNL Jenkins server to work
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:
#RULES=/path/to/epics/support/module/rules/x-y
# Leave these in for the Jenkins build at BNL to work
EPICS_BASE=/home/install/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
PVACCESS=/home/mrk/hg/pvAccessCPP
# set your EPICS_BASE, PVDATA and PVACCESS paths in here
-include $(TOP)/../RELEASE.local
-include $(TOP)/configure/RELEASE.local

View File

@ -1,11 +1,11 @@
# RELEASE - Location of external support modules # pvDatabaseCPP/example RELEASE - Location of external support modules
# #
# IF YOU MAKE ANY CHANGES to this file you must subsequently # IF YOU CHANGE this file or any file it includes you must
# do a "gnumake rebuild" in this application's top level # subsequently do a "gnumake rebuild" in the application's
# directory. # top level directory.
# #
# The build process does not check dependencies against files # The build process does not check dependencies against files
# that are outside this application, thus you should do a # that are outside this application, thus you should also do a
# "gnumake rebuild" in the top level directory after EPICS_BASE # "gnumake rebuild" in the top level directory after EPICS_BASE
# or any other external module pointed to below is rebuilt. # or any other external module pointed to below is rebuilt.
# #
@ -13,32 +13,28 @@
# RELEASE.$(EPICS_HOST_ARCH).Common # RELEASE.$(EPICS_HOST_ARCH).Common
# RELEASE.Common.$(T_A) # RELEASE.Common.$(T_A)
# RELEASE.$(EPICS_HOST_ARCH).$(T_A) # RELEASE.$(EPICS_HOST_ARCH).$(T_A)
# EPICS V4 Developers: Do not edit the locations in this file!
# #
# This file should ONLY define paths to other support modules, # Create a file RELEASE.local pointing to your places
# or include statements that pull in similar RELEASE files. # for the dependencies, e.g.
# Build settings that are NOT module paths should appear in a # PVACCESS = /path/to/epics/pvAccessCPP
# CONFIG_SITE file. # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP
# EPICS_BASE = /path/to/epics/base
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top # If this example is built in a directory under pvDatabaseCPP,
# use the following definitions:
# If using the sequencer, point SNCSEQ at its top directory: PVDATABASE = $(TOP)/..
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq -include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local
# EPICS_BASE usually appears last so other apps can override stuff: # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local],
# and use the following definitions instead:
# do not edit the locations in this file #-include $(TOP)/../RELEASE.local
# create RELEASE.local with the paths to your EPICS_BASE, PVDATA, and PVACCESS #-include $(TOP)/configure/RELEASE.local
# these default locations are needed for the BNL Jenkins server to work
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:
#RULES=/path/to/epics/support/module/rules/x-y
# Leave these in for the Jenkins build at BNL to work
EPICS_BASE=/home/install/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
PVACCESS=/home/mrk/hg/pvAccessCPP
# set your EPICS_BASE, PVDATA and PVACCESS paths in here
-include $(TOP)/../RELEASE.local
-include $(TOP)/configure/RELEASE.local

View File

@ -1,11 +1,11 @@
# RELEASE - Location of external support modules # pvDatabaseCPP/example RELEASE - Location of external support modules
# #
# IF YOU MAKE ANY CHANGES to this file you must subsequently # IF YOU CHANGE this file or any file it includes you must
# do a "gnumake rebuild" in this application's top level # subsequently do a "gnumake rebuild" in the application's
# directory. # top level directory.
# #
# The build process does not check dependencies against files # The build process does not check dependencies against files
# that are outside this application, thus you should do a # that are outside this application, thus you should also do a
# "gnumake rebuild" in the top level directory after EPICS_BASE # "gnumake rebuild" in the top level directory after EPICS_BASE
# or any other external module pointed to below is rebuilt. # or any other external module pointed to below is rebuilt.
# #
@ -13,32 +13,28 @@
# RELEASE.$(EPICS_HOST_ARCH).Common # RELEASE.$(EPICS_HOST_ARCH).Common
# RELEASE.Common.$(T_A) # RELEASE.Common.$(T_A)
# RELEASE.$(EPICS_HOST_ARCH).$(T_A) # RELEASE.$(EPICS_HOST_ARCH).$(T_A)
# EPICS V4 Developers: Do not edit the locations in this file!
# #
# This file should ONLY define paths to other support modules, # Create a file RELEASE.local pointing to your places
# or include statements that pull in similar RELEASE files. # for the dependencies, e.g.
# Build settings that are NOT module paths should appear in a # PVACCESS = /path/to/epics/pvAccessCPP
# CONFIG_SITE file. # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP
# EPICS_BASE = /path/to/epics/base
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top # If this example is built in a directory under pvDatabaseCPP,
# use the following definitions:
# If using the sequencer, point SNCSEQ at its top directory: PVDATABASE = $(TOP)/..
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq -include $(TOP)/../../RELEASE.local
-include $(TOP)/../configure/RELEASE.local
# EPICS_BASE usually appears last so other apps can override stuff: # If you copied this example from pvDatabaseCPP to be built as a
# standalone TOP, define
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local],
# and use the following definitions instead:
# do not edit the locations in this file #-include $(TOP)/../RELEASE.local
# create RELEASE.local with the paths to your EPICS_BASE, PVDATA, and PVACCESS #-include $(TOP)/configure/RELEASE.local
# these default locations are needed for the BNL Jenkins server to work
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:
#RULES=/path/to/epics/support/module/rules/x-y
# Leave these in for the Jenkins build at BNL to work
EPICS_BASE=/home/install/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
PVACCESS=/home/mrk/hg/pvAccessCPP
# set your EPICS_BASE, PVDATA and PVACCESS paths in here
-include $(TOP)/../RELEASE.local
-include $(TOP)/configure/RELEASE.local

View File

@ -1,11 +1,11 @@
# RELEASE - Location of external support modules # pvDatabaseCPP/test RELEASE - Location of external support modules
# #
# IF YOU MAKE ANY CHANGES to this file you must subsequently # IF YOU CHANGE this file or any file it includes you must
# do a "gnumake rebuild" in this application's top level # subsequently do a "gnumake rebuild" in the application's
# directory. # top level directory.
# #
# The build process does not check dependencies against files # The build process does not check dependencies against files
# that are outside this application, thus you should do a # that are outside this application, thus you should also do a
# "gnumake rebuild" in the top level directory after EPICS_BASE # "gnumake rebuild" in the top level directory after EPICS_BASE
# or any other external module pointed to below is rebuilt. # or any other external module pointed to below is rebuilt.
# #
@ -13,32 +13,28 @@
# RELEASE.$(EPICS_HOST_ARCH).Common # RELEASE.$(EPICS_HOST_ARCH).Common
# RELEASE.Common.$(T_A) # RELEASE.Common.$(T_A)
# RELEASE.$(EPICS_HOST_ARCH).$(T_A) # RELEASE.$(EPICS_HOST_ARCH).$(T_A)
# EPICS V4 Developers: Do not edit the locations in this file!
# #
# This file should ONLY define paths to other support modules, # Create a file RELEASE.local pointing to your places
# or include statements that pull in similar RELEASE files. # for the dependencies, e.g.
# Build settings that are NOT module paths should appear in a # PVACCESS = /path/to/epics/pvAccessCPP
# CONFIG_SITE file. # PVDATA = /path/to/epics/pvDataCPP
# PVCOMMON = /path/to/epics/pvCommonCPP
# EPICS_BASE = /path/to/epics/base
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top # If these tests are built in a directory under pvDatabaseCPP,
# use the following definitions:
# If using the sequencer, point SNCSEQ at its top directory: PVDATABASE = $(TOP)/..
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq -include $(TOP)/../../RELEASE.local
# EPICS_BASE usually appears last so other apps can override stuff:
# do not edit the locations in this file
# create RELEASE.local with the paths to your EPICS_BASE, PVDATA, and PVACCESS
# these default locations are needed for the BNL Jenkins server to work
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:
#RULES=/path/to/epics/support/module/rules/x-y
# Leave these in for the Jenkins build at BNL to work
EPICS_BASE=/home/install/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
PVACCESS=/home/mrk/hg/pvAccessCPP
# set your EPICS_BASE, PVDATA and PVACCESS paths in here
-include $(TOP)/../configure/RELEASE.local -include $(TOP)/../configure/RELEASE.local
PVDATABASE=$(TOP)/..
# If you copied these tests from pvDatabaseCPP to be built as a
# standalone TOP, define
# PVDATABASE = /path/to/epics/pvDatabaseCPP
# in the appropriate RELEASE[.local],
# and use the following definitions instead:
#-include $(TOP)/../RELEASE.local
#-include $(TOP)/configure/RELEASE.local