xref: /minix/minix/drivers/storage/Makefile (revision d2532d3d)
1.include <bsd.own.mk>
2
3.if ${MKIMAGEONLY} == "no"
4.  if ${MACHINE_ARCH} == "i386"
5SUBDIR+=	ahci
6SUBDIR+=	fbd
7SUBDIR+=	filter
8SUBDIR+=	virtio_blk
9.  endif # ${MACHINE_ARCH} == "i386"
10
11.  if ${MACHINE_ARCH} == "earm"
12SUBDIR+=	mmc
13.  endif # ${MACHINE_ARCH} == "earm"
14
15SUBDIR+=	vnd
16.endif # ${MKIMAGEONLY} == "no"
17
18.if ${MACHINE_ARCH} == "i386"
19SUBDIR+=	at_wini
20SUBDIR+=	floppy
21.endif # ${MACHINE_ARCH} == "i386"
22
23# memory driver must be last for ramdisk image.
24# Everything else must be done before ramdisk as it needs
25# executables from other targets.
26SUBDIR+=	.WAIT ramdisk .WAIT memory
27
28.include <bsd.subdir.mk>
29