diff -r 000000000000 -r 77d8eafe2a07 configure/RELEASE --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/configure/RELEASE Thu Mar 07 09:23:26 2019 +0100 @@ -0,0 +1,49 @@ +# RELEASE - Location of external support modules +# +# IF YOU CHANGE ANY PATHS in this file or make API changes to +# any modules it refers to, you should do a "make rebuild" in +# this application's top level directory. +# +# The EPICS build process does not check dependencies against +# any files from outside the application, so it is safest to +# rebuild it completely if any modules it depends on change. +# +# Host- or target-specific settings can be given in files named +# RELEASE.$(EPICS_HOST_ARCH).Common +# RELEASE.Common.$(T_A) +# RELEASE.$(EPICS_HOST_ARCH).$(T_A) +# +# This file is parsed by both GNUmake and an EPICS Perl script, +# so it may ONLY contain definititions of paths to other support +# modules, variable definitions that are used in module paths, +# and include statements that pull in other RELEASE files. +# Variables may be used before their values have been set. +# Build variables that are NOT used in paths should be set in +# the CONFIG_SITE file. + +# Variables and paths to dependent modules: +#MODULES = /path/to/modules +#MYMODULE = $(MODULES)/my-module +SUPPORT=/opt/epics/SUPPORT +#SSCAN=$(SUPPORT)/sscan +CALC=$(SUPPORT)/calc +BUSY=$(SUPPORT)/busy +ASYN=$(SUPPORT)/asyn +STREAM=$(SUPPORT)/stream +IP=$(SUPPORT)/ip + +# If using the sequencer, point SNCSEQ at its top directory: +SNCSEQ = $(SUPPORT)/seq-2.2.6 + +# EPICS_BASE should appear last so earlier modules can override stuff: +EPICS_BASE = /opt/epics/BASE/epics-base + +# Set RULES here if you want to use build rules from somewhere +# other than EPICS_BASE: +#RULES = $(MODULES)/build-rules + +# These lines allow developers to override these RELEASE settings +# without having to modify this file directly. +-include $(TOP)/../RELEASE.local +-include $(TOP)/../RELEASE.$(EPICS_HOST_ARCH).local +-include $(TOP)/configure/RELEASE.local