diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-12-16 04:00:40 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-12-16 04:00:40 +0000 |
| commit | f3474f630e1f720c351eb81d1b4ecbe46d1f2c19 (patch) | |
| tree | 93acb38b00e997566bb6adf241c0f93fb618b1a7 /sys/modules/aic/Makefile | |
| parent | 1e7e1ff6783eb59c34325101e02f94f7bf27e228 (diff) | |
Notes
Diffstat (limited to 'sys/modules/aic/Makefile')
| -rw-r--r-- | sys/modules/aic/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/modules/aic/Makefile b/sys/modules/aic/Makefile index 4b68aa91243c..56cfbb5b8b3f 100644 --- a/sys/modules/aic/Makefile +++ b/sys/modules/aic/Makefile @@ -2,8 +2,15 @@ .PATH: ${.CURDIR}/../../dev/aic KMOD = aic -SRCS = aic.c aic_pccard.c aic_isa.c +SRCS = aic.c aic_pccard.c SRCS += opt_bdg.h device_if.h bus_if.h pci_if.h isa_if.h SRCS += opt_cam.h opt_scsi.h +.if ${MACHINE} == "pc98" +SRCS += aic_cbus.c +CFLAGS += -DPC98 +.else +SRCS += aic_isa.c +.endif + .include <bsd.kmod.mk> |
