From 45ac44c1569b165c7f264dc02490f5a2c0bd4889 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Thu, 16 Sep 2021 12:02:17 +0200 Subject: [PATCH] update docu --- Readme.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 255fc8b..0858fcb 100644 --- a/Readme.md +++ b/Readme.md @@ -605,7 +605,11 @@ To change this, list the source code files in the variable `SOURCES`. If that variable is defined, no automatic detection of source code is done. For code only to be compiled with certain EPICS versions, OS classes, or architectures, use variables like `SOURCES_*`, for example `SOURCES_3.13`, -`SOURCES_3.14.12`, `SOURCES_Linux`, `SOURCES_vxWorks`. +`SOURCES_3.14.12`, `SOURCES_7`, `SOURCES_Linux`, `SOURCES_vxWorks`, +`SOURCES_7.0.6_SL6`. + +For backward compatibility, `SOURCES_3.14`, `SOURCES_3.14_Linux` and such +are built for any EPICS release from 3.14 on like 3.15 and 7. **Example:** ``` @@ -614,7 +618,10 @@ SOURCES += mycode.c SOURCES += subdir/othercode.cc SOURCES += statemachine.st SOURCES_3.13 += codeOnlyFor3.13.c +SOURCES_3.14 += codeFor3.14orHigherIncluding7.c SOURCES_3.14.12 += codeOnlyFor3.14.12.c +SOURCES_3 += codeOnlyFor3.c +SOURCES_7 += codeOnlyFor7.c ``` If all files are OS class specific or EPICS base version specific so that