diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-01-06 14:00:42 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-01-06 14:00:42 +0000 |
| commit | c68159a6d8eede11766cf13896d0f7670dbd51aa (patch) | |
| tree | b5bd7b342364fa60517c01a5a2d13b795a00e693 /sys/modules/aic | |
| parent | e2a2e8c7e010a3606724014fc2ada010259b1cb2 (diff) | |
Notes
Diffstat (limited to 'sys/modules/aic')
| -rw-r--r-- | sys/modules/aic/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sys/modules/aic/Makefile b/sys/modules/aic/Makefile index 56cfbb5b8b3f..e0fb1adcf1de 100644 --- a/sys/modules/aic/Makefile +++ b/sys/modules/aic/Makefile @@ -1,16 +1,17 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../dev/aic -KMOD = aic -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 +.PATH: ${.CURDIR}/../../dev/aic + +KMOD= aic +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 +SRCS+= aic_cbus.c +CFLAGS+= -DPC98 .else -SRCS += aic_isa.c +SRCS+= aic_isa.c .endif .include <bsd.kmod.mk> |
