diff --git a/sys/modules/drm/Makefile b/sys/modules/drm/Makefile new file mode 100644 index 000000000000..0a3748410fd1 --- /dev/null +++ b/sys/modules/drm/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR = gamma mga r128 radeon tdfx + +.include diff --git a/sys/modules/drm/gamma/Makefile b/sys/modules/drm/gamma/Makefile new file mode 100644 index 000000000000..4d5902223d2a --- /dev/null +++ b/sys/modules/drm/gamma/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/drm +KMOD = gamma +NOMAN = YES +SRCS = gamma_drv.c gamma_dma.c +SRCS += device_if.h bus_if.h pci_if.h opt_drm.h opt_drm_linux.h + +.include diff --git a/sys/modules/drm/mga/Makefile b/sys/modules/drm/mga/Makefile new file mode 100644 index 000000000000..55ffa14d0660 --- /dev/null +++ b/sys/modules/drm/mga/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/drm +KMOD = mga +NOMAN = YES +SRCS = mga_drv.c mga_state.c mga_warp.c mga_dma.c +SRCS +=device_if.h bus_if.h pci_if.h opt_drm.h opt_drm_linux.h +KMODDEPS= agp + +.include diff --git a/sys/modules/drm/r128/Makefile b/sys/modules/drm/r128/Makefile new file mode 100644 index 000000000000..947e3075c487 --- /dev/null +++ b/sys/modules/drm/r128/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/drm +KMOD = r128 +NOMAN = YES +SRCS = r128_cce.c r128_drv.c r128_state.c +SRCS +=device_if.h bus_if.h pci_if.h opt_drm.h opt_drm_linux.h +KMODDEPS= agp + +.include diff --git a/sys/modules/drm/radeon/Makefile b/sys/modules/drm/radeon/Makefile new file mode 100644 index 000000000000..079dc0df534e --- /dev/null +++ b/sys/modules/drm/radeon/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/drm +KMOD = radeon +NOMAN = YES +SRCS = radeon_cp.c radeon_drv.c radeon_state.c +SRCS +=device_if.h bus_if.h pci_if.h opt_drm.h opt_drm_linux.h +KMODDEPS= agp + +.include diff --git a/sys/modules/drm/tdfx/Makefile b/sys/modules/drm/tdfx/Makefile new file mode 100644 index 000000000000..70bdf56e560e --- /dev/null +++ b/sys/modules/drm/tdfx/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/drm +KMOD = tdfx +NOMAN = YES +SRCS = tdfx_drv.c +SRCS +=device_if.h bus_if.h pci_if.h opt_drm.h opt_drm_linux.h + +.include