################################################################################
# Config.mk TMS Makefile build system settings
# T.Barnaby, Beam Ltd, 2024-08-15
################################################################################
#
PROJECT = TMS
GIT_URL = beam.beamnet:/data/git/Cern/tms
VERSION = 2.3.0
RELEASE = 1.beam
TARGET ?=
DIST ?=
PREFIX ?= /usr/tms
ifeq ("$(TARGET)", "")
TARGET = $(shell cut -d " " -f1 /etc/bsystype.txt)
endif
ifeq ("$(DIST)", "")
DIST = $(shell cut -d " " -f2 /etc/bsystype.txt)
endif
ifeq ("$(TARGET)", "")
$(error TARGET not defined)
endif
ifeq ("$(DIST)", "")
$(error DIST not defined)
endif
include ${TOP}/config/Config_${TARGET}.mk