Makefile revision 71795
1# $FreeBSD: head/sys/modules/3dfx/Makefile 71795 2001-01-29 11:38:39Z 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	touch opt_tdfx.h
24	echo $(TDFX_OPTS) >> opt_tdfx.h
25
26.include <bsd.kmod.mk>
27