b1eba81b9d
. always compile acpi, with clang, so never have build/clean inconsistencies; can be enabled (i.e. run at boot time) by setting acpi variable in the boot monitor . always strip binaries with the right strip cmd, so never have ack/elf strip inconsistencies
21 lines
516 B
Makefile
21 lines
516 B
Makefile
# Makefile for all device drivers.
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKIMAGEONLY} == "yes"
|
|
|
|
# memory driver must be last for ramdisk image
|
|
SUBDIR= at_wini bios_wini floppy log tty pci .WAIT ramdisk .WAIT memory
|
|
|
|
.else
|
|
|
|
# memory driver must be last for ramdisk image
|
|
SUBDIR+= ahci amddev atl2 at_wini audio bios_wini dec21140A dp8390 dpeth \
|
|
e1000 filter floppy fxp hello lance log orinoco pci printer \
|
|
random readclock rtl8139 rtl8169 ti1225 tty acpi \
|
|
.WAIT ramdisk .WAIT memory
|
|
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|