summaryrefslogtreecommitdiff
path: root/linux-core/imagine_drv.c
AgeCommit message (Expand)Author
2006-10-14remove config.h from build no longer exists kbuild does itDave Airlie
2005-08-05Rename the driver hooks in the DRM to something a little moreEric Anholt
2005-03-29Add skeletal imagine driver (but don't build it yet).Adam Jackson
'n34' href='#n34'>34 35 36 37 38 39 40 41
# $FreeBSD$

.PATH:	${.CURDIR}/..
KMOD	= drm
NO_MAN	= YES
SRCS    = \
	ati_pcigart.c \
	drm_agpsupport.c \
	drm_auth.c \
	drm_bufs.c \
	drm_context.c \
	drm_dma.c \
	drm_drawable.c \
	drm_drv.c \
	drm_fops.c \
	drm_ioctl.c \
	drm_irq.c \
	drm_lock.c \
	drm_memory.c \
	drm_pci.c \
	drm_scatter.c \
	drm_sysctl.c \
	drm_vm.c

SRCS   += device_if.h bus_if.h pci_if.h opt_drm.h
CFLAGS += ${DEBUG_FLAGS} -I. -I..

.if defined(DRM_DEBUG)
DRM_DEBUG_OPT= "\#define DRM_DEBUG 1"
.endif

.if !defined(DRM_NOLINUX)
DRM_LINUX_OPT= "\#define DRM_LINUX 1"
.endif

opt_drm.h:
	touch opt_drm.h
	echo $(DRM_DEBUG_OPT) >> opt_drm.h
	echo $(DRM_LINUX_OPT) >> opt_drm.h

.include <bsd.kmod.mk>