The drm2 modules makefiles commit.

Still not attached to the build.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
This commit is contained in:
Konstantin Belousov 2012-05-23 17:10:22 +00:00
parent 3c216b739e
commit 1f9b8fec59
4 changed files with 85 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# $FreeBSD$
.include <bsd.own.mk>
SUBDIR = \
drm2 \
i915kms
.include <bsd.subdir.mk>

View File

@ -0,0 +1,3 @@
# $FreeBSD$
.include "../Makefile.inc"

View File

@ -0,0 +1,39 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../dev/drm2
KMOD = drm2
SRCS = \
drm_agpsupport.c \
drm_auth.c \
drm_bufs.c \
drm_context.c \
drm_crtc.c \
drm_crtc_helper.c \
drm_dma.c \
drm_dp_iic_helper.c \
drm_drawable.c \
drm_drv.c \
drm_edid.c \
drm_fb_helper.c \
drm_fops.c \
drm_gem.c \
drm_gem_names.c \
drm_hashtab.c \
drm_ioctl.c \
drm_irq.c \
drm_linux_list_sort.c \
drm_lock.c \
drm_memory.c \
drm_mm.c \
drm_modes.c \
drm_pci.c \
drm_scatter.c \
drm_sman.c \
drm_stub.c \
drm_sysctl.c \
drm_vm.c
SRCS +=device_if.h bus_if.h pci_if.h device_if.h iicbus_if.h opt_drm.h \
opt_vm.h
.include <bsd.kmod.mk>

View File

@ -0,0 +1,34 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../dev/drm2/i915
KMOD = i915kms
SRCS = \
i915_debug.c \
i915_dma.c \
i915_drv.c \
i915_gem.c \
i915_gem_execbuffer.c \
i915_gem_evict.c \
i915_gem_gtt.c \
i915_gem_tiling.c \
i915_irq.c \
i915_suspend.c \
intel_bios.c \
intel_crt.c \
intel_display.c \
intel_dp.c \
intel_fb.c \
intel_hdmi.c \
intel_iic.c \
intel_lvds.c \
intel_modes.c \
intel_opregion.c \
intel_overlay.c \
intel_panel.c \
intel_ringbuffer.c \
intel_sdvo.c \
intel_sprite.c \
intel_tv.c
SRCS += device_if.h bus_if.h pci_if.h iicbus_if.h iicbb_if.h opt_drm.h
.include <bsd.kmod.mk>