diff options
author | semenu <semenu@FreeBSD.org> | 2000-04-11 18:40:30 +0000 |
---|---|---|
committer | semenu <semenu@FreeBSD.org> | 2000-04-11 18:40:30 +0000 |
commit | 0a4d16d37ea3135b341e10985d717a5fcc72d308 (patch) | |
tree | 972d8343b3aea3c3dd93d6b508851039adeb8e83 /sys/modules/tx | |
parent | 274c38fa9e4f8a740da25a066441f1bcd64911f5 (diff) | |
download | FreeBSD-src-0a4d16d37ea3135b341e10985d717a5fcc72d308.zip FreeBSD-src-0a4d16d37ea3135b341e10985d717a5fcc72d308.tar.gz |
Premier version of Makefile to build tx driver as KLD
Diffstat (limited to 'sys/modules/tx')
-rw-r--r-- | sys/modules/tx/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/modules/tx/Makefile b/sys/modules/tx/Makefile new file mode 100644 index 0000000..6196770 --- /dev/null +++ b/sys/modules/tx/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../pci +KMOD = if_tx +SRCS = if_tx.c opt_bdg.h device_if.h bus_if.h pci_if.h +SRCS += miibus_if.h +KMODDEPS = miibus + +.include <bsd.kmod.mk> |