diff options
author | Eric Anholt <anholt@freebsd.org> | 2003-08-29 20:54:26 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2003-08-29 20:54:26 +0000 |
commit | f634f687592bca690a9bc045661005c77854647b (patch) | |
tree | c90cc4351941027802155c073652d0f3aac0903a /bsd-core/sis | |
parent | fabc64dd573f01a2160be474b4abc65a3a9aa5ea (diff) |
These files were missed in the SiS DRM commit.
Diffstat (limited to 'bsd-core/sis')
-rw-r--r-- | bsd-core/sis/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/bsd-core/sis/Makefile b/bsd-core/sis/Makefile new file mode 100644 index 00000000..e6439499 --- /dev/null +++ b/bsd-core/sis/Makefile @@ -0,0 +1,23 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/.. +KMOD= sis +NOMAN= YES +SRCS= sis_drv.c sis_ds.c sis_mm.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> |