1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-04 12:52:15 +00:00

Minor reorg to have each bus' files on one line.

This commit is contained in:
Warner Losh 2005-07-13 14:53:38 +00:00
parent 959541b940
commit af5e2a4073
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=147958

View File

@ -3,15 +3,16 @@
.PATH: ${.CURDIR}/../../dev/ed
KMOD= if_ed
SRCS= if_ed.c if_ed_pccard.c if_ed_pci.c if_ed_novell.c if_ed_wd80x3.c
SRCS= if_ed.c
SRCS+= if_ed_novell.c if_ed_wd80x3.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 opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h \
miibus_if.h pccarddevs.h
SRCS+= opt_ed.h bus_if.h device_if.h miibus_if.h
.include <bsd.kmod.mk>