diff options
Diffstat (limited to 'sys/modules/ed')
| -rw-r--r-- | sys/modules/ed/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/modules/ed/Makefile b/sys/modules/ed/Makefile new file mode 100644 index 000000000000..723df349904a --- /dev/null +++ b/sys/modules/ed/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/ed + +KMOD= if_ed +SRCS= if_ed.c +SRCS+= if_ed_novell.c if_ed_wd80x3.c if_ed_rtl80x9.c isa_if.h +.if ${MACHINE} == "pc98" +SRCS+= if_ed_cbus.c +.else +SRCS+= if_ed_isa.c if_ed_3c503.c if_ed_hpp.c if_ed_sic.c +.endif +SRCS+= if_ed_pccard.c pccarddevs.h card_if.h +SRCS+= if_ed_pci.c pci_if.h + +SRCS+= opt_ed.h bus_if.h device_if.h miibus_if.h + +.include <bsd.kmod.mk> |
