diff options
Diffstat (limited to 'sys/modules/3dfx/Makefile')
-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 |