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

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/r200/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:
7
7
 
8
8
include ../Makefile.defines
9
9
 
10
 
ifeq ($(RADEON_LDFLAGS),)
11
 
CS_SOURCES = radeon_cs_space_drm.c radeon_bo.c radeon_cs.c
12
 
endif
13
 
 
14
10
RADEON_COMMON_SOURCES = \
15
 
        radeon_bo_legacy.c \
16
11
        radeon_buffer_objects.c \
17
12
        radeon_common_context.c \
18
13
        radeon_common.c \
19
 
        radeon_cs_legacy.c \
20
14
        radeon_dma.c \
21
15
        radeon_debug.c \
22
16
        radeon_fbo.c \
23
 
        radeon_lock.c \
24
17
        radeon_mipmap_tree.c \
25
18
        radeon_pixel_read.c \
26
19
        radeon_queryobj.c \
27
20
        radeon_span.c \
28
21
        radeon_texture.c \
29
22
        radeon_tex_copy.c \
30
 
        radeon_tex_getimage.c \
31
23
        radeon_tile.c
32
24
 
33
25
DRIVER_SOURCES = r200_context.c \
46
38
                 r200_blit.c \
47
39
                 radeon_screen.c \
48
40
                 $(EGL_SOURCES) \
49
 
                 $(RADEON_COMMON_SOURCES) \
50
 
                 $(CS_SOURCES)
 
41
                 $(RADEON_COMMON_SOURCES)
51
42
 
52
43
C_SOURCES = $(COMMON_SOURCES) $(DRIVER_SOURCES)
53
44
 
56
47
DRIVER_DEFINES = -DRADEON_R200
57
48
 
58
49
INCLUDES += $(RADEON_CFLAGS)
59
 
DRI_LIB_DEPS += $(RADEON_LDFLAGS)
 
50
DRI_LIB_DEPS += $(RADEON_LIBS)
60
51
 
61
52
##### TARGETS #####
62
53