diff options
author | cokane <cokane@FreeBSD.org> | 2000-06-21 20:32:24 +0000 |
---|---|---|
committer | cokane <cokane@FreeBSD.org> | 2000-06-21 20:32:24 +0000 |
commit | 76fe0fbc2c9577dc4d5b3b61ee91076368d73dca (patch) | |
tree | fcbca28bf73860cf2efa1854eff44dd6366f87fe | |
parent | dc44bff8163b240f97f70572db3884722d23ce60 (diff) | |
parent | 8a0824c301df54179c9ff0a2a05db00db380560e (diff) | |
download | FreeBSD-src-76fe0fbc2c9577dc4d5b3b61ee91076368d73dca.zip FreeBSD-src-76fe0fbc2c9577dc4d5b3b61ee91076368d73dca.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r61914,
which included commits to RCS files with non-trunk default branches.
-rw-r--r-- | sys/modules/3dfx/Makefile | 18 | ||||
-rw-r--r-- | sys/modules/tdfx/Makefile | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/sys/modules/3dfx/Makefile b/sys/modules/3dfx/Makefile new file mode 100644 index 0000000..6f97d3e --- /dev/null +++ b/sys/modules/3dfx/Makefile @@ -0,0 +1,18 @@ +.PATH: $(.CURDIR)/../../dev/tdfx +KMOD = tdfx +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 + +# Uncomment this for debugging messages +TDFX_VERBOSE = "\#define TDFX_VERBOSE" + +# kludge to allow opt_tdfx.h to exist +pci.h: opt_tdfx.h + echo "#define NPCI 1" > pci.h + +opt_tdfx.h: + echo $(TDFX_VERBOSE) > opt_tdfx.h + +.include <bsd.kmod.mk> diff --git a/sys/modules/tdfx/Makefile b/sys/modules/tdfx/Makefile new file mode 100644 index 0000000..6f97d3e --- /dev/null +++ b/sys/modules/tdfx/Makefile @@ -0,0 +1,18 @@ +.PATH: $(.CURDIR)/../../dev/tdfx +KMOD = tdfx +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 + +# Uncomment this for debugging messages +TDFX_VERBOSE = "\#define TDFX_VERBOSE" + +# kludge to allow opt_tdfx.h to exist +pci.h: opt_tdfx.h + echo "#define NPCI 1" > pci.h + +opt_tdfx.h: + echo $(TDFX_VERBOSE) > opt_tdfx.h + +.include <bsd.kmod.mk> |