diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-10-21 02:44:11 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-10-21 02:44:11 +0000 |
| commit | 95dc2c3cae03a752f4fe6f798f76a8e87ba1234c (patch) | |
| tree | 2c4af4c37322fcfd0e0e71850b34abad1884ebea /sys/modules/ed/Makefile | |
| parent | 04b57749a0de0b083d57a28967398a951b430a3a (diff) | |
Notes
Diffstat (limited to 'sys/modules/ed/Makefile')
| -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> |
