XCOMM Imakefile for dxpc
XCOMM Note: This file requires R6 or higher

XCOMM Original version by Larry Schwimmer <rosebud@cyclone.Stanford.EDU>
XCOMM Minor modifications for dxpc-3.0 by Brian Pane <brianp@cnet.com>
XCOMM Mods to file suffixes by Zachary Vonler <lightborn@mail.utexas.edu>

XCOMM If your imake database uses CC and you only have g++, uncomment
XCOMM the next line.
XCOMM CXX = g++
XCOMM #define HasGcc2ForCplusplus YES

XCOMM If IRIX's CC complains, try uncommenting the next line (or using g++)
#if defined(SGIArchitecture) && !HasGcc2ForCplusplus
CXXEXTRA_DEFINES = -D_ABI_SOURCE
#endif

.SUFFIXES: .cc

SRCS1= main.cc util.cc constants.cc Stats.cc \
	Multiplexer.cc ClientMultiplexer.cc ServerMultiplexer.cc \
	ClientChannel.cc ServerChannel.cc \
	ReadBuffer.cc ProxyReadBuffer.cc ClientReadBuffer.cc ServerReadBuffer.cc \
	EncodeBuffer.cc DecodeBuffer.cc WriteBuffer.cc \
	IntCache.cc CharCache.cc PixelCache.cc HuffmanCoder.cc \
	ClientCache.cc ServerCache.cc \
	TextCompressor.cc LastPixels.cc SequenceNumQueue.cc \
	BlockCache.cc BlockCacheSet.cc

OBJS1= $(SRCS1:.cc=.o)

DXPC= dxpc

PROGRAMS= $(DXPC)

ComplexCplusplusProgramTarget_1($(DXPC), , )
