drivers: build random for arm too
[minix.git] / drivers / Makefile
blob10f4a03572a2d27f3dbf237fbf7c9903fb367cf5
1 # Makefile for all device drivers.
4 .include <bsd.own.mk>
6 .if ${MKIMAGEONLY} == "yes"
8 .if ${MACHINE_ARCH} == "i386"
9 SUBDIR= at_wini floppy log tty pci
10 .endif
12 .if ${MACHINE_ARCH} == "earm"
13 SUBDIR= log tty
14 .endif
16 .else # ${MKIMAGEONLY} != "yes"
18 .if ${MACHINE_ARCH} == "i386"
19 SUBDIR= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
20 e1000 fbd filter floppy fxp hello lance log mmc orinoco pci printer \
21 random readclock rtl8139 rtl8169 ti1225 tty vbox acpi \
22 virtio_blk virtio_net
23 .endif
25 .if ${MACHINE_ARCH} == "earm"
26 SUBDIR= gpio mmc log tty random
27 .endif
29 .endif # ${MKIMAGEONLY} != "yes"
31 # memory driver must be last for ramdisk image
32 SUBDIR+= ramdisk .WAIT memory
34 .include <bsd.subdir.mk>