4a0ea4d698
MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
33 lines
439 B
Makefile
33 lines
439 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
FILES=
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
FILES+= apple.conf
|
|
.endif
|
|
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
.if ${MK_ACPI} != "no"
|
|
FILES+= asus.conf
|
|
.endif
|
|
.if ${MK_HYPERV} != "no"
|
|
FILES+= hyperv.conf
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MK_USB} != "no"
|
|
FILES+= uath.conf ulpt.conf usb.conf
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
FILES+= zfs.conf
|
|
.endif
|
|
|
|
NO_OBJ=
|
|
FILESDIR= /etc/devd
|
|
FILESMODE= 644
|
|
|
|
.include <bsd.prog.mk>
|