~ubuntu-branches/debian/lenny/italc/lenny

« back to all changes in this revision

Viewing changes to client/demoviewer/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2008-06-17 13:46:54 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080617134654-cl0gi4u524cv1ici
Tags: 1:1.0.9~rc3-1
* Package new upstream version
  - upstream ported the code to qt4.4 (Closes: #481974)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bin_PROGRAMS = demoviewer
2
 
 
3
 
demoviewer_SOURCES =                    \
4
 
                        argsresources.c \
5
 
                        colour.c        \
6
 
                        cursor.c        \
7
 
                        demoviewer.c    \
8
 
                        demoviewer.h    \
9
 
                        desktop.c       \
10
 
                        fullscreen.c    \
11
 
                        misc.c          \
12
 
                        rfbproto.c      \
13
 
                        rfbproto.h      \
14
 
                        shm.c           \
15
 
                        sockets.c
16
 
EXTRA_DIST =                            \
17
 
                        rre.c           \
18
 
                        corre.c         \
19
 
                        hextile.c       \
20
 
                        tight.c         \
21
 
                        zlib.c
22
 
 
23
 
if HAVE_LIBZ
24
 
ZLIB_LDADD = -lz
25
 
if HAVE_LIBJPEG
26
 
JPEG_LDADD = -ljpeg
27
 
endif
28
 
endif
29
 
 
30
 
demoviewer_LDADD = @X_LIBS@ $(LDADD) $(ZLIB_LDADD) $(JPEG_LDADD) -lXaw
31