tigervnc/rfb/Makefile.in
Peter Åstrand 462753d02c Added basic almost-functional Tight support, from tightrealvnc project. Decoder only.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@14 3789f03b-4d11-0410-bbf8-ca57d06f2519
2004-11-16 15:23:25 +00:00

68 lines
1.2 KiB
Makefile

CXXSRCS = \
Blacklist.cxx \
CConnection.cxx \
CMsgHandler.cxx \
CMsgReader.cxx \
CMsgReaderV3.cxx \
CMsgWriter.cxx \
CMsgWriterV3.cxx \
CSecurityVncAuth.cxx \
ComparingUpdateTracker.cxx \
Configuration.cxx \
ConnParams.cxx \
Cursor.cxx \
Decoder.cxx \
Encoder.cxx \
HTTPServer.cxx \
HextileDecoder.cxx \
HextileEncoder.cxx \
LogWriter.cxx \
Logger.cxx \
Logger_file.cxx \
Logger_stdio.cxx \
PixelBuffer.cxx \
PixelFormat.cxx \
RREEncoder.cxx \
RREDecoder.cxx \
RawDecoder.cxx \
RawEncoder.cxx \
Region.cxx \
SConnection.cxx \
SMsgHandler.cxx \
SMsgReader.cxx \
SMsgReaderV3.cxx \
SMsgWriter.cxx \
SMsgWriterV3.cxx \
ServerCore.cxx \
SSecurityFactoryStandard.cxx \
SSecurityVncAuth.cxx \
TightDecoder.cxx \
TransImageGetter.cxx \
UpdateTracker.cxx \
VNCSConnectionST.cxx \
VNCServerST.cxx \
ZRLEEncoder.cxx \
ZRLEDecoder.cxx \
encodings.cxx \
secTypes.cxx \
util.cxx \
vncAuth.cxx
SRCS = d3des.c $(CXXSRCS)
OBJS = d3des.o $(CXXSRCS:.cxx=.o)
DIR_CPPFLAGS = -I$(top_srcdir) @VSNPRINTF_DEFINE@
library = librfb.a
all:: $(library)
$(library): $(OBJS)
rm -f $(library)
$(AR) $(library) $(OBJS)
$(RANLIB) $(library)
# followed by boilerplate.mk