diff options
| author | Pyun YongHyeon <yongari@FreeBSD.org> | 2004-10-09 07:31:03 +0000 |
|---|---|---|
| committer | Pyun YongHyeon <yongari@FreeBSD.org> | 2004-10-09 07:31:03 +0000 |
| commit | e60fc88fa6d857b3250d03ce0adecce3ff626243 (patch) | |
| tree | d9e1ed67aa6fb6403cfbc6d5edc540acf61b8129 /sys/modules | |
| parent | 2f93f011ec9924deb8766ac528e40a05a0371cce (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/auxio/Makefile | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 1c2478d276b1f..a3cceea2885be 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -28,6 +28,7 @@ SUBDIR= ${_3dfx} \ ${_ath_hal} \ aue \ autofs \ + ${_auxio} \ ${_awi} \ axe \ bfe \ @@ -438,6 +439,7 @@ _gem= gem .endif .if ${MACHINE_ARCH} == "sparc64" +_auxio= auxio _gem= gem .endif diff --git a/sys/modules/auxio/Makefile b/sys/modules/auxio/Makefile new file mode 100644 index 0000000000000..06c30283a9f4d --- /dev/null +++ b/sys/modules/auxio/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/auxio + +KMOD= auxio + +SRCS= auxio.c +SRCS+= device_if.h bus_if.h + +.include <bsd.kmod.mk> |
