|
| 1 | +# RELEASE - Location of external support modules |
| 2 | +# |
| 3 | +# IF YOU CHANGE ANY PATHS in this file or make API changes to |
| 4 | +# any modules it refers to, you should do a "make rebuild" in |
| 5 | +# this application's top level directory. |
| 6 | +# |
| 7 | +# The EPICS build process does not check dependencies against |
| 8 | +# any files from outside the application, so it is safest to |
| 9 | +# rebuild it completely if any modules it depends on change. |
| 10 | +# |
| 11 | +# Host- or target-specific settings can be given in files named |
| 12 | +# RELEASE.$(EPICS_HOST_ARCH).Common |
| 13 | +# RELEASE.Common.$(T_A) |
| 14 | +# RELEASE.$(EPICS_HOST_ARCH).$(T_A) |
| 15 | +# |
| 16 | +# This file is parsed by both GNUmake and an EPICS Perl script, |
| 17 | +# so it may ONLY contain definititions of paths to other support |
| 18 | +# modules, variable definitions that are used in module paths, |
| 19 | +# and include statements that pull in other RELEASE files. |
| 20 | +# Variables may be used before their values have been set. |
| 21 | +# Build variables that are NOT used in paths should be set in |
| 22 | +# the CONFIG_SITE file. |
| 23 | + |
| 24 | +# Variables and paths to dependent modules: |
| 25 | +#MODULES = /path/to/modules |
| 26 | +#MYMODULE = $(MODULES)/my-module |
| 27 | + |
| 28 | +# If using the sequencer, point SNCSEQ at its top directory: |
| 29 | +#SNCSEQ = $(MODULES)/seq-ver |
| 30 | + |
| 31 | +# EPICS_BASE should appear last so earlier modules can override stuff: |
| 32 | +EPICS_BASE = C:/Instrument/Apps/EPICS/base/master |
| 33 | + |
| 34 | +# Set RULES here if you want to use build rules from somewhere |
| 35 | +# other than EPICS_BASE: |
| 36 | +#RULES = $(MODULES)/build-rules |
| 37 | + |
| 38 | +# These lines allow developers to override these RELEASE settings |
| 39 | +# without having to modify this file directly. |
| 40 | +-include $(TOP)/../RELEASE.local |
| 41 | +-include $(TOP)/../RELEASE.$(EPICS_HOST_ARCH).local |
| 42 | +-include $(TOP)/configure/RELEASE.local |
| 43 | + |
| 44 | +# Macros required for basic ioc/stream device |
| 45 | +ACCESSSECURITY=$(SUPPORT)/AccessSecurity/master |
| 46 | +ASUBFUNCTIONS=$(SUPPORT)/asubFunctions/master |
| 47 | +ASYN=$(SUPPORT)/asyn/master |
| 48 | +AUTOSAVE=$(SUPPORT)/autosave/master |
| 49 | +CALC=$(SUPPORT)/calc/master |
| 50 | +CAPUTLOG=$(SUPPORT)/caPutLog/master |
| 51 | +DEVIOCSTATS=$(SUPPORT)/devIocStats/master |
| 52 | +ICPCONFIG=$(SUPPORT)/icpconfig/master |
| 53 | +LIBJSON=$(SUPPORT)/libjson/master |
| 54 | +LUA=$(SUPPORT)/lua/master |
| 55 | +MYSQL=$(SUPPORT)/MySQL/master |
| 56 | +ONCRPC=$(SUPPORT)/oncrpc/master |
| 57 | +PCRE=$(SUPPORT)/pcre/master |
| 58 | +PUGIXML=$(SUPPORT)/pugixml/master |
| 59 | +PVDUMP=$(SUPPORT)/pvdump/master |
| 60 | +SNCSEQ=$(SUPPORT)/seq/master |
| 61 | +SQLITE=$(SUPPORT)/sqlite/master |
| 62 | +SSCAN=$(SUPPORT)/sscan/master |
| 63 | +STREAMDEVICE=$(SUPPORT)/StreamDevice/master |
| 64 | +UTILITIES=$(SUPPORT)/utilities/master |
| 65 | +ZLIB=$(SUPPORT)/zlib/master |
| 66 | + |
| 67 | +FLIPPRPS=$(SUPPORT)/flipprps/master |
| 68 | + |
| 69 | +# optional extra local definitions here |
| 70 | +-include $(TOP)/configure/RELEASE.private |
| 71 | + |
| 72 | +include $(TOP)/../../../ISIS_CONFIG |
| 73 | +-include $(TOP)/../../../ISIS_CONFIG.$(EPICS_HOST_ARCH) |
| 74 | + |
| 75 | +# IOC-specific support module |
0 commit comments