aboutsummaryrefslogtreecommitdiff
path: root/bsd-core/drm
diff options
context:
space:
mode:
authorEric Anholt <anholt@freebsd.org>2004-11-06 23:05:46 +0000
committerEric Anholt <anholt@freebsd.org>2004-11-06 23:05:46 +0000
commitd37457b5996c09d1965f8906501cd1fde6aa9499 (patch)
treeb02ad2b8bbb8cdd273400210a5fadb4eaa17eef6 /bsd-core/drm
parentcb5aaa89871c051098ae8067d0e386840b7bdc59 (diff)
Add the drm Makefile and update .cvsignores.
Diffstat (limited to 'bsd-core/drm')
-rw-r--r--bsd-core/drm/.cvsignore8
-rw-r--r--bsd-core/drm/Makefile41
2 files changed, 49 insertions, 0 deletions
diff --git a/bsd-core/drm/.cvsignore b/bsd-core/drm/.cvsignore
new file mode 100644
index 00000000..806f346c
--- /dev/null
+++ b/bsd-core/drm/.cvsignore
@@ -0,0 +1,8 @@
+.depend
+bus_if.h
+device_if.h
+export_syms
+opt_drm.h
+pci_if.h
+drm.kld
+drm.ko
diff --git a/bsd-core/drm/Makefile b/bsd-core/drm/Makefile
new file mode 100644
index 00000000..278aac0e
--- /dev/null
+++ b/bsd-core/drm/Makefile
@@ -0,0 +1,41 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/..
+KMOD = drm
+NOMAN = 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>