Add makefiles for DRM modules

Approved by:	des
This commit is contained in:
Eric Anholt 2002-04-27 20:55:03 +00:00
parent 4fc9623548
commit 24d44c5d51
6 changed files with 53 additions and 0 deletions

5
sys/modules/drm/Makefile Normal file
View File

@ -0,0 +1,5 @@
# $FreeBSD$
SUBDIR = gamma mga r128 radeon tdfx
.include <bsd.subdir.mk>

View File

@ -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 <bsd.kmod.mk>

View File

@ -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 <bsd.kmod.mk>

View File

@ -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 <bsd.kmod.mk>

View File

@ -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 <bsd.kmod.mk>

View File

@ -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 <bsd.kmod.mk>