summaryrefslogtreecommitdiff
path: root/minix/drivers/storage/Makefile
blob: f9f53ee98ac665ccde9101ff2a78185485334783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.include <bsd.own.mk>

.if ${MKIMAGEONLY} == "no"
.  if ${MACHINE_ARCH} == "i386"
SUBDIR+=	ahci
SUBDIR+=	fbd
SUBDIR+=	filter
SUBDIR+=	virtio_blk
.  endif # ${MACHINE_ARCH} == "i386"

.  if ${MACHINE_ARCH} == "earm"
SUBDIR+=	mmc
.  endif # ${MACHINE_ARCH} == "earm"

SUBDIR+=	vnd
.endif # ${MKIMAGEONLY} == "no"

.if ${MACHINE_ARCH} == "i386"
SUBDIR+=	at_wini
SUBDIR+=	floppy
.endif # ${MACHINE_ARCH} == "i386"

# memory driver must be last for ramdisk image.
# Everything else must be done before ramdisk as it needs
# executables from other targets.
SUBDIR+=	.WAIT ramdisk .WAIT memory

.include <bsd.subdir.mk>