aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-06-12 10:58:49 +0200
committerGitHub <noreply@github.com>2018-06-12 10:58:49 +0200
commit836ea32a4930ff4c99eceb06fcf2d4de0567052a (patch)
treee385bdc2798fb36f4e3dde281298e0a5183eaac6 /searchcore
parentec73b3c1d58136290584bb680da8bffb06bf86e0 (diff)
parentf8f393a22859004ee12cce94c36b19ff84629b6a (diff)
Merge pull request #6174 from vespa-engine/arnej/cleanup-old-mak-files
clean up remnants of .mak files
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/versiontag.mak34
1 files changed, 0 insertions, 34 deletions
diff --git a/searchcore/src/versiontag.mak b/searchcore/src/versiontag.mak
deleted file mode 100644
index 3f8d09a48e0..00000000000
--- a/searchcore/src/versiontag.mak
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-VTAG_DATE=$(shell date +%Y.%m.%d-%H.%M.%S)
-VTAG_SYSTEM=$(shell uname -s)
-VTAG_SYSTEM_REV=$(shell uname -r)
-VTAG_BUILDER=$(shell (whoami) 2>/dev/null||logname)@$(shell uname -n)
-ifneq (X$(SPECIFIED_VTAG),XDISABLE)
- ifeq (X$(UNAME), XWin32)
- VTAG=-DV_TAG='\"$(SPECIFIED_VTAG)\"'
- else
- VTAG=-DV_TAG='"$(SPECIFIED_VTAG)"'
- endif
-else
- ifeq (X$(UNAME), XWin32)
- VTAG=
- else
- VTAG_TAG=$(shell cat $(TOP)/CVS/Tag 2>/dev/null | sed "s/^.//" 2>/dev/null)
- ifeq (X$(VTAG_TAG),X)
- VTAG_TAG=CURRENT
- endif
- ifeq ($(findstring _RELEASE, $(VTAG_TAG)),_RELEASE)
- VTAG_SYSTEM=$(shell uname -s)
- VTAG=-DV_TAG='"$(VTAG_TAG)-$(VTAG_SYSTEM)"'
- else
- VTAG_DATE=$(shell date +%Y.%m.%d-%H:%M:%S)
- VTAG_SYSTEM=$(shell (whoami) 2>/dev/null||logname)@$(shell uname -n)-$(shell uname -s)-$(shell uname -r)
- VTAG=-DV_TAG='"$(VTAG_TAG)-$(VTAG_SYSTEM)-$(VTAG_DATE)"'
- endif
- endif
-endif
-VTAG+= -DV_TAG_DATE='"$(VTAG_DATE)"'
-VTAG+= -DV_TAG_SYSTEM='"$(VTAG_SYSTEM)"'
-VTAG+= -DV_TAG_SYSTEM_REV='"$(VTAG_SYSTEM_REV)"'
-VTAG+= -DV_TAG_BUILDER='"$(VTAG_BUILDER)"'
-