~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/gallium/targets/egl-static/Makefile

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2012-08-23 15:37:30 UTC
  • mfrom: (1.7.6)
  • Revision ID: package-import@ubuntu.com-20120823153730-c499sefj7btu4386
Tags: 9.0~git20120821.c1114c61-0ubuntu1
* Merge from unreleased debian git.
  - Includes support for ATI Trinity PCI IDs (LP: #1009089)
* rules, control, libgl1-mesa-swx11*: Remove swx11 support.
* Refresh patches:
  - drop 115_llvm_dynamic_linking.diff,
    117_nullptr_check_in_query_version.patch, and
    118_glsl_initialize_samplers.patch, all upstream
  - disable 116_use_shared_galliumcore.diff until it's reviewed and
    reworked to apply
* not-installed, libegl1-mesa-drivers-install.linux.in: Updated to
  match the single-pass build.
* libgl1-mesa-dri.*install.in: Drop libglsl.so, it's included in
  libdricore.so now.
* rules: Don't disable GLU on the common flags, we need to build it
  on the dri target.
* libglu*install.in: Fix the source file paths to match the build target.
  Drop the static lib from -dev since only shared libs get built.
* libgl1-mesa-dev.install.in: Fix the source file paths to match the
  build target.
* libgl1-mesa-dri.install.linux.in: Don't try to install libgallium.so,
  which isn't built yet.
* rules: Enable llvmpipe on armhf to see if it works or not.
* rules: Remove bin/install-sh on clean, and don't create a symlink for
  it.
* control: Add Pre-Depends on dpkg-dev due to the binaries using xz
  compression.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
ifneq ($(findstring wayland, $(EGL_PLATFORMS)),)
54
54
egl_CPPFLAGS += $(LIBDRM_CFLAGS)
55
55
egl_LIBS += $(TOP)/src/gallium/winsys/sw/wayland/libws_wayland.a
56
 
egl_LIBS += $(TOP)/src/egl/wayland/wayland-drm/libwayland-drm.a
 
56
egl_LIBS += $(TOP)/src/egl/wayland/wayland-drm/.libs/libwayland-drm.a
57
57
egl_SYS += $(LIBDRM_LIB) $(WAYLAND_LIBS)
58
58
endif
59
59
ifneq ($(findstring drm, $(EGL_PLATFORMS)),)
101
101
egl_CPPFLAGS += -D_EGL_PIPE_NOUVEAU=1
102
102
egl_LIBS += \
103
103
        $(TOP)/src/gallium/winsys/nouveau/drm/libnouveaudrm.a \
104
 
        $(TOP)/src/gallium/drivers/nvfx/libnvfx.a \
 
104
        $(TOP)/src/gallium/drivers/nv30/libnv30.a \
105
105
        $(TOP)/src/gallium/drivers/nv50/libnv50.a \
106
106
        $(TOP)/src/gallium/drivers/nvc0/libnvc0.a \
107
107
        $(TOP)/src/gallium/drivers/nouveau/libnouveau.a
115
115
egl_LIBS += \
116
116
        $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \
117
117
        $(TOP)/src/gallium/drivers/r300/libr300.a
 
118
egl_SYS += -ldrm_radeon
118
119
endif
119
120
endif
120
121
 
125
126
egl_LIBS += \
126
127
        $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \
127
128
        $(TOP)/src/gallium/drivers/r600/libr600.a
 
129
egl_SYS += -ldrm_radeon
 
130
endif
 
131
endif
 
132
 
 
133
# radeonsi
 
134
ifneq ($(findstring radeon/drm,$(GALLIUM_WINSYS_DIRS)),)
 
135
ifneq ($(findstring radeonsi,$(GALLIUM_DRIVERS_DIRS)),)
 
136
egl_CPPFLAGS += -D_EGL_PIPE_RADEONSI=1
 
137
egl_LIBS += \
 
138
        $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \
 
139
        $(TOP)/src/gallium/drivers/radeonsi/libradeonsi.a
 
140
egl_SYS += -ldrm_radeon
128
141
endif
129
142
endif
130
143