aboutsummaryrefslogtreecommitdiffstats
path: root/rfb/Makefile.in
blob: a373eb7c4e315230bbda753caea41a664b681f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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) @ZLIB_INCLUDE@ @JPEG_INCLUDE@ @VSNPRINTF_DEFINE@

library = librfb.a

all:: $(library)

$(library): $(OBJS)
	rm -f $(library)
	$(AR) $(library) $(OBJS)
	$(RANLIB) $(library)

# followed by boilerplate.mk