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

« back to all changes in this revision

Viewing changes to hw/kdrive/mga/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 = Xmga
 
7
 
 
8
noinst_LIBRARIES = libmga.a
 
9
 
 
10
if TSLIB
 
11
TSLIB_FLAG = -lts
 
12
endif
 
13
 
 
14
libmga_a_SOURCES =              \
 
15
        mgadraw.c               \
 
16
        g400_composite.c        \
 
17
        g400_common.h           \
 
18
        mga.c                   \
 
19
        mga.h   
 
20
 
 
21
Xmga_SOURCES = \
 
22
        mgastub.c
 
23
 
 
24
MGA_LIBS =                                              \
 
25
        libmga.a                                        \
 
26
        $(top_builddir)/hw/kdrive/vesa/libvesa.a        \
 
27
        @KDRIVE_LIBS@
 
28
 
 
29
Xmga_LDADD = \
 
30
        $(MGA_LIBS)                                     \
 
31
        @KDRIVE_LIBS@                                  \
 
32
        $(TSLIB_FLAG)
 
33
 
 
34
Xmga_DEPENDENCIES = $(MGA_LIBS) @KDRIVE_LIBS@