Home | History | Annotate | Line # | Download | only in ttm
Makefile revision 1.1
      1  1.1  riastrad #
      2  1.1  riastrad # Makefile for the drm device driver.  This driver provides support for the
      3  1.1  riastrad 
      4  1.1  riastrad ccflags-y := -Iinclude/drm
      5  1.1  riastrad ttm-y := ttm_agp_backend.o ttm_memory.o ttm_tt.o ttm_bo.o \
      6  1.1  riastrad 	ttm_bo_util.o ttm_bo_vm.o ttm_module.o \
      7  1.1  riastrad 	ttm_object.o ttm_lock.o ttm_execbuf_util.o ttm_page_alloc.o \
      8  1.1  riastrad 	ttm_bo_manager.o
      9  1.1  riastrad 
     10  1.1  riastrad ifeq ($(CONFIG_SWIOTLB),y)
     11  1.1  riastrad ttm-y += ttm_page_alloc_dma.o
     12  1.1  riastrad endif
     13  1.1  riastrad 
     14  1.1  riastrad obj-$(CONFIG_DRM_TTM) += ttm.o
     15