diff options
author | obrien <obrien@FreeBSD.org> | 2001-01-06 14:00:42 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-01-06 14:00:42 +0000 |
commit | c269c9fb36040d129558f61fa26bf3745100a4ff (patch) | |
tree | 363eeb0167be52153e02cd0c80ecf406e8f2d99c /sys/modules/3dfx | |
parent | e68548a9cc79e93cd770bd33d505fa2347aa5bf4 (diff) | |
download | FreeBSD-src-c269c9fb36040d129558f61fa26bf3745100a4ff.zip FreeBSD-src-c269c9fb36040d129558f61fa26bf3745100a4ff.tar.gz |
Use a consistent style and one much closer to the rest of /usr/src
Diffstat (limited to 'sys/modules/3dfx')
-rw-r--r-- | sys/modules/3dfx/Makefile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/sys/modules/3dfx/Makefile b/sys/modules/3dfx/Makefile index cdb773e..5c67621 100644 --- a/sys/modules/3dfx/Makefile +++ b/sys/modules/3dfx/Makefile @@ -1,22 +1,25 @@ # $FreeBSD$ + +MAINTAINER= cokane@FreeBSD.org + .PATH: $(.CURDIR)/../../dev/tdfx -MAINTAINER= cokane@FreeBSD.org -KMOD= 3dfx -NOMAN= YES -SRCS= opt_tdfx.h pci.h bus_if.h pci_if.h device_if.h tdfx_pci.h tdfx_io.h\ - tdfx_vars.h tdfx_pci.c -INCSRC= ../../sys -CLEANFILES= pci.h +KMOD= 3dfx +NOMAN= YES +SRCS= opt_tdfx.h pci.h bus_if.h pci_if.h device_if.h tdfx_pci.h tdfx_io.h\ + tdfx_vars.h tdfx_pci.c +INCSRC= ../../sys + +CLEANFILES= pci.h .if ${MACHINE_ARCH} == "i386" # This line enables linux ioctl handling by default # comment out if you don't want it -TDFX_OPTS= "\#define TDFX_LINUX" +TDFX_OPTS= "\#define TDFX_LINUX" .endif # Uncomment this for debugging messages -#CFLAGS+= -DDEBUG +#CFLAGS+= -DDEBUG pci.h: echo "#define NPCI 1" > pci.h |