From 4a0cd2c095894b095a51573e4075fd096ac5f113 Mon Sep 17 00:00:00 2001 From: Hugo Jean Ponsin Date: Mon, 4 May 2026 09:23:18 +0200 Subject: [PATCH] adding makefile for realease --- Makefile | 23 +++++++++++++++++++ feedback_records.db => db/feedback_records.db | 0 socket_record.db => db/socket_record.db | 0 .../template4.substitutions | 0 .../template8.substitutions | 0 5 files changed, 23 insertions(+) create mode 100644 Makefile rename feedback_records.db => db/feedback_records.db (100%) rename socket_record.db => db/socket_record.db (100%) rename template4.substitutions => substitutions/template4.substitutions (100%) rename template8.substitutions => substitutions/template8.substitutions (100%) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..81c1d4e --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +#https://gitea.psi.ch/lin-epics-modules/sinqSPS/src/branch/main/Makefile + +# This build the sinq extensions for the PSI EPICS setup +include /ioc/tools/driver.makefile + +MODULE=ePowerSwitch +BUILDCLASSES=Linux +EPICS_VERSIONS=7.0.7 +ARCH_FILTER=RHEL% + +# additional module dependencies +#REQUIRED+=asyn +#REQUIRED+=calc +REQUIRED+=stream + +# DB files to include in the release +TEMPLATES += db/feedback_records.db +TEMPLATES += db/socket_record.db +TEMPLATES += command.proto + +TEMPLATES += substitutions/template4.substitutions +TEMPLATES += substitutions/template8.substitutions + diff --git a/feedback_records.db b/db/feedback_records.db similarity index 100% rename from feedback_records.db rename to db/feedback_records.db diff --git a/socket_record.db b/db/socket_record.db similarity index 100% rename from socket_record.db rename to db/socket_record.db diff --git a/template4.substitutions b/substitutions/template4.substitutions similarity index 100% rename from template4.substitutions rename to substitutions/template4.substitutions diff --git a/template8.substitutions b/substitutions/template8.substitutions similarity index 100% rename from template8.substitutions rename to substitutions/template8.substitutions