- tms-old
- tms
- tmsControl
- Makefile
This file ( 786B ) 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-13
# updated by D.Korchagin, CERN AB-BI-SW, 2007-08-31
################################################################################
#
TOP = ..
include ${TOP}/Makefile.config
#DEBUGFLAGS = -O2 -g -pg
LDLIBS := -lTms $(LDLIBS)
PROGS = tmsControl$(DARCH)
OBJS = tmsControl$(DARCH).o
# General
all: ${PROGS}
install: all
mkdir -p ${BINDIR}
cp ${PROGS} ${BINDIR}
#depend:
# makedepend -fMakefile.depend $(DFLAGS) *.cpp *.cc 2> /dev/null
tmsControl$(DARCH): $(OBJS)
$(LINK.cc) $(LDFLAGS) -o tmsControl$(DARCH) $(OBJS) $(LDLIBS)
clean:
rm -f *$(DARCH).o *$(DARCH).a *.so *.mo *.mo.cpp data.txt pupeSource?.txt $(PROGS)
include Makefile.depend