- tms
- Config.mk
This file ( 737B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
################################################################################
# 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