RSS Git Download  Clone
Raw Blame History
################################################################################
#	Makefile
#		T.Barnaby,	BEAM Ltd,	2007-02-07
################################################################################
#

CXXFLAGS	= -I../include -I../include/Beam
LDFLAGS 	= -L../lib
LDLIBS		= -lTms -lBeam -lpthread
CC		= g++

PROGS	= tmsDataClient1 tmsControlClient1

# General
all:	${PROGS}

install:	all

depend:
	makedepend -Y *.cpp *.cc 2> /dev/null

clean:
	rm -f *.o *.a *.so $(PROGS)

# DO NOT DELETE