xref: /minix/minix/drivers/Makefile (revision cd34841d)
1.include <bsd.own.mk>
2
3.if ${MKIMAGEONLY} == "no"
4SUBDIR+=	audio
5SUBDIR+=	clock
6SUBDIR+=	eeprom
7SUBDIR+=	examples
8SUBDIR+=	iommu
9SUBDIR+=	net
10SUBDIR+=	power
11SUBDIR+=	printer
12SUBDIR+=	sensors
13SUBDIR+=	system
14SUBDIR+=	usb
15SUBDIR+=	video
16SUBDIR+=	vmm_guest
17.endif # ${MKIMAGEONLY} == "no"
18
19# The following folders contain drivers which are always required
20SUBDIR+=	bus
21SUBDIR+=	tty
22SUBDIR+=	hid
23
24# BJG - build storage last as the ramdisk depends on some other things
25SUBDIR+=	.WAIT storage
26
27.include <bsd.subdir.mk>
28