################################################################################
# Makefile For tmsStateGen utility
# T.Barnaby, BEAM Ltd, 2007-03-14
################################################################################
#
TOP = $(shell pwd)/..
include ${TOP}/Makefile.config
# Main bits
VERSION = 0.1.0
PROGS = tmsStateGen
OBJS1 = main.o Gen.o
LDLIBS += -lTms
#DEBUGFLAGS = -g -pg
DEBUGFLAGS = -O2 -g
.PHONY: dox
all: $(PROGS)
clean:
rm -f *.o *.mo *.mo.cpp *~ *.txt $(PROGS)
includes:
install: includes all
mkdir -p $(BINDIR)
cp $(PROGS) $(BINDIR)
depend:
makedepend -fMakefile.depend -Y -I. *.cpp
tmsStateGen: $(OBJS1)
$(CXX) $(LDFLAGS) -o tmsStateGen $(OBJS1) $(LDLIBS)
test:
tmsStateGen -t beam1 -p state.txt
include Makefile.depend