~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/r128/Makefile

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# src/mesa/drivers/dri/r128/Makefile
2
 
 
3
 
TOP = ../../../../..
4
 
include $(TOP)/configs/current
5
 
 
6
 
LIBNAME = r128_dri.so
7
 
 
8
 
include ../Makefile.defines
9
 
 
10
 
DRIVER_SOURCES = \
11
 
        r128_context.c \
12
 
        r128_lock.c \
13
 
        r128_state.c \
14
 
        r128_texstate.c \
15
 
        r128_dd.c \
16
 
        r128_screen.c \
17
 
        r128_tex.c \
18
 
        r128_tris.c \
19
 
        r128_ioctl.c \
20
 
        r128_span.c \
21
 
        r128_texmem.c
22
 
 
23
 
C_SOURCES = \
24
 
        $(COMMON_SOURCES) \
25
 
        $(DRIVER_SOURCES) 
26
 
 
27
 
ASM_SOURCES = 
28
 
 
29
 
 
30
 
include ../Makefile.targets
31