ed4df03113
As the ramdisk and ext2 ramdisk don't build anything for the install and all targets, memory does not have to wait for them anymore.
21 lines
507 B
Makefile
21 lines
507 B
Makefile
# Makefile for all device drivers.
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKIMAGEONLY} == "yes"
|
|
|
|
# memory driver must be last for ramdisk image
|
|
SUBDIR= at_wini floppy log tty pci ext2_ramdisk ramdisk memory
|
|
|
|
.else
|
|
|
|
# memory driver must be last for ramdisk image
|
|
SUBDIR+= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
|
|
e1000 fbd filter floppy fxp hello lance log orinoco pci printer \
|
|
random readclock rtl8139 rtl8169 ti1225 tty vbox acpi \
|
|
ext2_ramdisk ramdisk memory
|
|
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|