aecd25eea9
values of MK_USB/MK_ZFS Making zfs.conf optional resolves PR # 186971 PR: 186971 Phabric: D606 Approved by: jmmv (mentor) Sponsored by: EMC / Isilon Storage Division
26 lines
339 B
Makefile
26 lines
339 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
|
|
|
|
NO_OBJ=
|
|
FILESDIR= /etc/devd
|
|
FILESMODE= 644
|
|
|
|
.include <bsd.prog.mk>
|