2006-03-14 Adam Jackson * xf86drmHash.c: Avoid walking off the end of the hash table. (Coverity report #465) 2006-02-20 Adam Jackson * ChangeLog: * Makefile.am: Created. * TODO: * xf86drm.c: * xf86drm.h: * xf86drmHash.c: * xf86drmRandom.c: * xf86drmSL.c: Formatting cleanup, dead code removal. Remove N() namespacing macro, useless. Remove SIGIO handling functions as they're server-only and properly belong in libdri. der'> cgit logo index : renesas/drm.git
libdrm, cloned from git://anongit.freedesktop.org/mesa/drmLaurent Pinchart
summaryrefslogtreecommitdiff
blob: 2e534ce70d059b83a8715cdf12572b2253637e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $FreeBSD$

.PATH:	${.CURDIR}/..
KMOD= 	mga
NO_MAN=	YES
SRCS=		mga_drv.c mga_state.c mga_warp.c mga_dma.c mga_irq.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>