mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
76cd7220b5
This is cleaner and eliminates the unneeded startup of KVP daemon on systems that do not run as a Hyper-V guest. Submitted by: hrs X-MFC-with: 271493, 271688, 271699
30 lines
392 B
Makefile
30 lines
392 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
FILES+= apple.conf
|
|
.endif
|
|
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
FILES+= asus.conf
|
|
.endif
|
|
|
|
.if ${MK_USB} != "no"
|
|
FILES+= uath.conf usb.conf
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
FILES+= zfs.conf
|
|
.endif
|
|
|
|
.if ${MK_HYPERV} != "no"
|
|
FILES+= hyperv.conf
|
|
.endif
|
|
|
|
NO_OBJ=
|
|
FILESDIR= /etc/devd
|
|
FILESMODE= 644
|
|
|
|
.include <bsd.prog.mk>
|