minix/drivers/Makefile

35 lines
704 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for all device drivers.
#
.include <bsd.own.mk>
2005-04-21 16:53:53 +02:00
.if ${MKIMAGEONLY} == "yes"
.if ${MACHINE_ARCH} == "i386"
SUBDIR= at_wini floppy log tty pci
.endif
.if ${MACHINE_ARCH} == "earm"
2013-01-23 15:12:19 +01:00
SUBDIR= log tty
.endif
.else # ${MKIMAGEONLY} != "yes"
.if ${MACHINE_ARCH} == "i386"
SUBDIR= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
e1000 fbd filter floppy fxp hello lance log mmc orinoco pci printer \
2012-12-15 13:54:11 +01:00
random readclock rtl8139 rtl8169 ti1225 tty vbox acpi \
2012-12-15 13:55:07 +01:00
virtio_blk virtio_net
.endif
.if ${MACHINE_ARCH} == "earm"
SUBDIR= gpio mmc log tty
.endif
.endif # ${MKIMAGEONLY} != "yes"
# memory driver must be last for ramdisk image
SUBDIR+= ramdisk .WAIT memory
.include <bsd.subdir.mk>