~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to hw/kdrive/pm2/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES =                                      \
 
2
        @KDRIVE_INCS@                           \
 
3
        -I$(top_srcdir)/hw/kdrive/vesa          \
 
4
        @KDRIVE_CFLAGS@
 
5
 
 
6
bin_PROGRAMS = Xpm2
 
7
 
 
8
if TSLIB
 
9
TSLIB_FLAG = -lts
 
10
endif
 
11
 
 
12
noinst_LIBRARIES = libpm2.a
 
13
 
 
14
libpm2_a_SOURCES =      \
 
15
        glint_regs.h    \
 
16
        pm2.c           \
 
17
        pm2_draw.c      \
 
18
        pm2.h   
 
19
 
 
20
Xpm2_SOURCES = \
 
21
        pm2stub.c
 
22
 
 
23
PM2_LIBS =                                      \
 
24
        libpm2.a                                \
 
25
        $(top_builddir)/hw/kdrive/vesa/libvesa.a \
 
26
        @KDRIVE_LIBS@
 
27
 
 
28
Xpm2_LDADD = \
 
29
        $(PM2_LIBS)                             \
 
30
        @KDRIVE_LIBS@                          \
 
31
        $(TSLIB_FLAG)
 
32
 
 
33
Xpm2_DEPENDENCIES = $(PM2_LIBS) @KDRIVE_LIBS@