Add the drm Makefile and update .cvsignores.

main
Eric Anholt 2004-11-06 23:05:46 +00:00
parent cb5aaa8987
commit d37457b599
4 changed files with 58 additions and 0 deletions

1
bsd-core/.cvsignore Normal file
View File

@ -0,0 +1 @@
drm_pciids.h

8
bsd-core/drm/.cvsignore Normal file
View File

@ -0,0 +1,8 @@
.depend
bus_if.h
device_if.h
export_syms
opt_drm.h
pci_if.h
drm.kld
drm.ko

41
bsd-core/drm/Makefile Normal file
View File

@ -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>

8
bsd-core/i915/.cvsignore Normal file
View File

@ -0,0 +1,8 @@
.depend
bus_if.h
device_if.h
export_syms
opt_drm.h
pci_if.h
i915.kld
i915.ko