~ubuntu-branches/ubuntu/edgy/xorg-server/edgy-updates

« back to all changes in this revision

Viewing changes to hw/xfree86/parser/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Stone
  • Date: 2005-12-13 07:27:13 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051213072713-5fc2avvjcsbfxu4h
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
noinst_LIBRARIES = libparser.a
2
 
libparser_a_SOURCES = Device.c Files.c Flags.c Input.c Keyboard.c Layout.c \
3
 
                      Module.c Video.c Monitor.c Pointer.c Screen.c \
4
 
                      Vendor.c read.c scan.c write.c DRI.c Extensions.c
 
1
if INSTALL_LIBXF86CONFIG
 
2
lib_LIBRARIES = libxf86config.a
 
3
else
 
4
noinst_LIBRARIES = libxf86config.a
 
5
endif
 
6
 
 
7
libxf86config_a_SOURCES = \
 
8
        Device.c \
 
9
        Files.c \
 
10
        Flags.c \
 
11
        Input.c \
 
12
        Keyboard.c \
 
13
        Layout.c \
 
14
        Module.c \
 
15
        Video.c \
 
16
        Monitor.c \
 
17
        Pointer.c \
 
18
        Screen.c \
 
19
        Vendor.c \
 
20
        read.c \
 
21
        scan.c \
 
22
        write.c \
 
23
        DRI.c \
 
24
        Extensions.c
5
25
 
6
26
AM_CFLAGS = $(XORG_CFLAGS)
7
27