~ubuntu-branches/ubuntu/raring/mesa/raring-proposed

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/Makefile.defines

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2011-06-19 21:26:00 UTC
  • mfrom: (1.6.1 upstream) (3.3.18 sid)
  • mto: (3.3.20 sid)
  • mto: This revision was merged to the branch mainline in revision 145.
  • Revision ID: james.westby@ubuntu.com-20110619212600-rleaapdmnbtstekb
Tags: 7.11~0-2
Thank you sbuild for giving a green light when that's not actually the
case. Fix missing Pre-Depends for the libegl1-mesa-drivers package
(multiarch-support).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*-makefile-*-
 
2
 
 
3
COMMON_GALLIUM_SOURCES = \
 
4
        ../common/utils.c \
 
5
        ../common/vblank.c \
 
6
        ../common/dri_util.c \
 
7
        ../common/xmlconfig.c
 
8
 
 
9
COMMON_SOURCES = $(COMMON_GALLIUM_SOURCES) \
 
10
        ../../common/driverfuncs.c \
 
11
        ../common/texmem.c \
 
12
        ../common/drirenderbuffer.c
 
13
 
 
14
INCLUDES = $(SHARED_INCLUDES) $(EXPAT_INCLUDES)
 
15
 
 
16
OBJECTS = $(C_SOURCES:.c=.o) \
 
17
          $(CXX_SOURCES:.cpp=.o) \
 
18
          $(ASM_SOURCES:.S=.o) 
 
19
 
 
20
 
 
21
### Include directories
 
22
SHARED_INCLUDES = \
 
23
        -I. \
 
24
        -I$(TOP)/src/mesa/drivers/dri/common \
 
25
        -Iserver \
 
26
        -I$(TOP)/include \
 
27
        -I$(TOP)/src/mapi \
 
28
        -I$(TOP)/src/mesa \
 
29
        -I$(TOP)/src/egl/main \
 
30
        -I$(TOP)/src/egl/drivers/dri \
 
31
        $(LIBDRM_CFLAGS)
 
32
 
 
33
INCLUDES += $(API_DEFINES)
 
34
CXXFLAGS += $(API_DEFINES)