blob: 328c1415cdd48c2afe9ebbf34de1157f0e8b963a (
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
|
.include <bsd.own.mk>
.if ${MKIMAGEONLY} == "no"
SUBDIR+= audio
SUBDIR+= clock
SUBDIR+= eeprom
SUBDIR+= examples
SUBDIR+= iommu
SUBDIR+= net
SUBDIR+= power
SUBDIR+= printer
SUBDIR+= sensors
SUBDIR+= system
SUBDIR+= usb
SUBDIR+= video
SUBDIR+= vmm_guest
.endif # ${MKIMAGEONLY} == "no"
# The following folders contain drivers which are always required
SUBDIR+= bus
SUBDIR+= tty
SUBDIR+= hid
# BJG - build storage last as the ramdisk depends on some other things
SUBDIR+= .WAIT storage
.include <bsd.subdir.mk>
|