From 9cc8254d9e21da2b686d4004351bed12b333d32c Mon Sep 17 00:00:00 2001
From: Alessandro Abrami <alessandro.abrami@elettra.eu>
Date: Fri, 15 Oct 2021 11:57:57 +0200
Subject: [PATCH] 2021/10/15: 	Aggiornato RELEASE/REPO

---
 Make-Release.in | 16 ++++++++++++++++
 Makefile        | 10 ++++------
 2 files changed, 20 insertions(+), 6 deletions(-)
 create mode 100644 Make-Release.in

diff --git a/Make-Release.in b/Make-Release.in
new file mode 100644
index 0000000..972b746
--- /dev/null
+++ b/Make-Release.in
@@ -0,0 +1,16 @@
+
+RELEASE := GIT:: $(shell git describe --dirty)
+CXXFLAGS += -D'RELEASE="$(RELEASE)"'
+REPO := GIT:: $(shell git config --get remote.origin.url)
+LOC_REPO := GIT:: $(shell git rev-parse --show-toplevel)
+CXXFLAGS += -D'REPO="$(LOC_REPO)"'
+SUBMODULES +=
+
+REL_SRCS_0 += $(shell find . -name "*.cpp" -exec grep -l -e RELEASE -e REPO -e SUBMODULES {} \;)
+REL_SRCS   += $(subst ./,, $(REL_SRCS_0))
+REL_OBJS   += $(addprefix obj/,$(notdir $(REL_SRCS:.cpp=.o)))
+
+.PHONY: tags_clean
+	
+tags_clean:
+	@rm -f $(REL_OBJS)
diff --git a/Makefile b/Makefile
index 6c6764e..276dfca 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,7 @@
 NAME_SRV = pespccdstage-srv
 
+all: tags_clean bin/$(NAME_SRV)
+
 CXXFLAGS =
 LDFLAGS = -litpp
 
@@ -71,17 +73,13 @@ else
   CXXFLAGS += -I /runtime/include/libaxisutils
 endif
 
-RELEASE := GIT:: $(shell git describe --dirty)
-CXXFLAGS += -D'RELEASE="$(RELEASE)"'
-REPO := GIT:: $(shell git config --get remote.origin.url)
-LOC_REPO := GIT:: $(shell git rev-parse --show-toplevel)
-CXXFLAGS += -D'REPO="$(LOC_REPO)"'
-
 include Make-libhist.in
 OBJ_FILES += $(EXTRA_OBJS)
 
 include ../makefiles/Make-9.3.3.in
 
+include Make-Release.in
+
 LDFLAGS  += -laxisutils
 
 ifeq ($(HAVE_SAFETYMANGER), yes)
-- 
GitLab