- tms-old
- tms
- tmsServer
- Makefile
This file ( 1kB ) 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.
################################################################################
# Makefile
# T.Barnaby, BEAM Ltd, 2007-02-07
################################################################################
#
TOP = ..
include $(TOP)/Makefile.config
LDLIBS := -lTms ${LDLIBS}
LDFLAGS += -rdynamic
PROGS = tmsServer
OBJS = Config.o Debug.o TmsApi.o
OBJS += DataAcquire.o PuServer.o
OBJS += Control.o main.o
DEBUGFLAGS = -g -O2 -DDEBUG
#DEBUGFLAGS = -O2 -DDEBUG
# General
all: ${PROGS}
install: all
mkdir -p ${BINDIR}
cp ${PROGS} ${BINDIR}
mkdir -p ${SYSETCDIR}
cp tmsServer.conf ${SYSETCDIR}/tmsServer1.conf
#mkdir -p ${SYSETCDIR}/rc.d/init.d
#cp tmsServer.rc ${SYSETCDIR}/rc.d/init.d/tmsServer
mkdir -p ${SYSSYSTEMD}/system
cp tmsServer@.service ${SYSSYSTEMD}/system
depend:
makedepend -fMakefile.depend -Y -I. *.cpp 2> /dev/null
clean:
rm -f *.o *.a *.so $(PROGS)
tmsServer: ${OBJS}
$(CXX) $(LDFLAGS) -o $@ $^ $(OBJSGUI) $(OBJSUIC) $(LDLIBS)
t: t.o SigGen.o
include Makefile.depend