Makefile revision 71985
1# $FreeBSD: head/sys/modules/3dfx/Makefile 71985 2001-02-04 08:23:14Z peter $
2
3MAINTAINER=	cokane@FreeBSD.org
4
5.PATH: $(.CURDIR)/../../dev/tdfx
6
7KMOD=	3dfx
8NOMAN=	YES
9SRCS=	opt_tdfx.h  bus_if.h pci_if.h device_if.h tdfx_pci.h tdfx_io.h\
10	tdfx_vars.h tdfx_pci.c
11INCSRC=	../../sys
12
13.if ${MACHINE_ARCH} == "i386"
14# This line enables linux ioctl handling by default
15# comment out if you don't want it
16TDFX_OPTS=	"\#define TDFX_LINUX"
17.endif
18
19# Uncomment this for debugging messages
20#CFLAGS+=	-DDEBUG
21
22opt_tdfx.h:
23	echo $(TDFX_OPTS) > opt_tdfx.h
24
25.include <bsd.kmod.mk>
26