diff options
| -rw-r--r-- | sys/modules/ed/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/ed/Makefile b/sys/modules/ed/Makefile index cc6809e8ef9a..b87438e31287 100644 --- a/sys/modules/ed/Makefile +++ b/sys/modules/ed/Makefile @@ -2,7 +2,15 @@ .PATH: ${.CURDIR}/../../dev/ed KMOD = if_ed -SRCS = if_ed.c if_ed_cbus.c if_ed_isa.c if_ed_pccard.c if_ed_pci.c +SRCS = if_ed.c if_ed_pccard.c if_ed_pci.c + +.if ${MACHINE} == "pc98" +SRCS += if_ed_cbus.c +CFLAGS += -DPC98 +.else +SRCS += if_ed_isa.c +.endif + SRCS += opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h .include <bsd.kmod.mk> |
