~ubuntu-branches/ubuntu/dapper/vino/dapper

« back to all changes in this revision

Viewing changes to server/libvncserver/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2004-10-12 19:36:40 UTC
  • Revision ID: james.westby@ubuntu.com-20041012193640-ybetkwuqt7e04dke
Tags: upstream-2.8.1
ImportĀ upstreamĀ versionĀ 2.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
 
3
SUBDIRS = rfb
 
4
 
 
5
noinst_LTLIBRARIES = libvncserver.la
 
6
 
 
7
INCLUDES = $(WARN_CFLAGS) $(LIBGNUTLS_CFLAGS) $(LIBGCRYPT_CFLAGS)
 
8
 
 
9
libvncserver_la_SOURCES =       \
 
10
        auth.c                  \
 
11
        corre.c                 \
 
12
        cursor.c                \
 
13
        cutpaste.c              \
 
14
        d3des.c                 \
 
15
        d3des.h                 \
 
16
        hextile.c               \
 
17
        main.c                  \
 
18
        rfbregion.c             \
 
19
        rfbserver.c             \
 
20
        rre.c                   \
 
21
        sockets.c               \
 
22
        stats.c                 \
 
23
        tight.c                 \
 
24
        translate.c             \
 
25
        vncauth.c               \
 
26
        zlib.c                  \
 
27
        zrle.c                  \
 
28
        zrleoutstream.c         \
 
29
        zrleoutstream.h         \
 
30
        zrlepalettehelper.c     \
 
31
        zrlepalettehelper.h     \
 
32
        zrletypes.h             \
 
33
        $(NULL)
 
34
 
 
35
EXTRA_DIST =                    \
 
36
        tableinit24.c           \
 
37
        tableinittctemplate.c   \
 
38
        tabletrans24template.c  \
 
39
        tabletranstemplate.c    \
 
40
        tableinitcmtemplate.c   \
 
41
        zrleencodetemplate.c    \
 
42
        $(NULL)
 
43