diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2004-07-16 18:37:00 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2004-07-16 18:37:00 +0000 |
| commit | b9e96ac1391dc61de9a8329dacfce3899e527c3a (patch) | |
| tree | 1cc8040dd970eff06e4d094b0d7cf6890fd27de5 /sys/modules/fdc/Makefile | |
| parent | 8a59da300c504e8912eb08442b9ae184b89ce455 (diff) | |
Notes
Diffstat (limited to 'sys/modules/fdc/Makefile')
| -rw-r--r-- | sys/modules/fdc/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sys/modules/fdc/Makefile b/sys/modules/fdc/Makefile index 6e530025e4dd..a7f53ee2eedc 100644 --- a/sys/modules/fdc/Makefile +++ b/sys/modules/fdc/Makefile @@ -1,19 +1,21 @@ # $FreeBSD$ -.if ${MACHINE} == "pc98" -.PATH: ${.CURDIR}/../../pc98/pc98 -.else -.PATH: ${.CURDIR}/../../dev/fdc -.endif KMOD= fdc WARNS?= 2 + .if ${MACHINE} == "pc98" +.PATH: ${.CURDIR}/../../pc98/pc98 SRCS= fd.c fdc_cbus.c .else +.PATH: ${.CURDIR}/../../dev/fdc +SRCS= fdc.c fdc_isa.c fdc_pccard.c +.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" CFLAGS+= -I${.CURDIR}/../../contrib/dev/acpica -SRCS= fdc.c fdc_acpi.c fdc_isa.c fdc_pccard.c +SRCS+= opt_acpi.h acpi_if.h fdc_acpi.c .endif -SRCS+= opt_acpi.h opt_fdc.h acpi_if.h bus_if.h card_if.h device_if.h \ +.endif + +SRCS+= opt_fdc.h bus_if.h card_if.h device_if.h \ isa_if.h pccarddevs.h FDC_DEBUG?= 0 # 0/1 |
