summaryrefslogtreecommitdiff
path: root/bsd-core/savage/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bsd-core/savage/Makefile')
-rw-r--r--bsd-core/savage/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/bsd-core/savage/Makefile b/bsd-core/savage/Makefile
new file mode 100644
index 00000000..8ed07965
--- /dev/null
+++ b/bsd-core/savage/Makefile
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/..
+KMOD = savage
+NOMAN = YES
+SRCS = savage_bci.c savage_drv.c savage_state.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>