diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-20 12:52:10 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-25 13:18:01 +0100 |
commit | 797d173a9af12055ba2609293182b616dd673ef4 (patch) | |
tree | 0bc73734fa5e5bb1e57715d448bc7a6da88aba5a /src/Makefile.am | |
parent | cd61531a78b9a2cbdd6019199c43258f83e6e2ce (diff) |
i810: Move into a legacy directory.
The driver is still built but is no longer under active development so
move it and supporting files to a new directory.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 864660e2..9a502cc4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -18,7 +18,7 @@ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SUBDIRS = xvmc render_program +SUBDIRS = xvmc render_program legacy # this is obnoxious: # -module lets us name the module exactly how we want @@ -32,35 +32,25 @@ AM_CFLAGS = @CWARNFLAGS@ @XORG_CFLAGS@ @DRM_CFLAGS@ @DRI_CFLAGS@ \ intel_drv_la_LTLIBRARIES = intel_drv.la intel_drv_la_LDFLAGS = -module -avoid-version intel_drv_ladir = @moduledir@/drivers -intel_drv_la_LIBADD = -lm @DRM_LIBS@ -ldrm_intel ../uxa/libuxa.la +intel_drv_la_LIBADD = -lm @DRM_LIBS@ -ldrm_intel ../uxa/libuxa.la legacy/liblegacy.la intel_drv_la_LIBADD += @PCIACCESS_LIBS@ +NULL:=# + INTEL_DRI_SRCS = \ - i810_dri.c \ - i810_dri.h \ i830_dri.c \ - i810_hwmc.c + $(NULL) INTEL_XVMC_SRCS = \ i830_hwmc.h \ - i830_hwmc.c + i830_hwmc.c \ + $(NULL) intel_drv_la_SOURCES = \ brw_defines.h \ brw_structs.h \ common.h \ - i810_accel.c \ - i810_common.h \ - i810_cursor.c \ - i810_dga.c \ - i810_driver.c \ - i810.h \ - i810_io.c \ - i810_memory.c \ - i810_reg.h \ - i810_ring.h \ - i810_video.c \ - i810_wmark.c \ + intel_module.c \ i830_3d.c \ i830_accel.c \ i830_batchbuffer.c \ @@ -80,21 +70,26 @@ intel_drv_la_SOURCES = \ i830_render.c \ i915_render.c \ i965_render.c \ - drmmode_display.c + drmmode_display.c \ + $(NULL) EXTRA_DIST = \ $(XMODE_SRCS) \ $(INTEL_DRI_SRCS) \ - $(INTEL_XVMC_SRCS) + $(INTEL_XVMC_SRCS) \ + $(NULL) if DRI intel_drv_la_SOURCES += \ - $(INTEL_DRI_SRCS) + $(INTEL_DRI_SRCS) \ + $(NULL) intel_drv_la_LIBADD += \ - $(DRI_LIBS) + $(DRI_LIBS) \ + $(NULL) endif if XVMC intel_drv_la_SOURCES += \ - $(INTEL_XVMC_SRCS) + $(INTEL_XVMC_SRCS) \ + $(NULL) endif |