c0ed339548
Add a note to UPDATING. Fix a missing tab. Relnotes: Yes
34 lines
463 B
Makefile
34 lines
463 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
FILEGROUPS= FILES
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
FILES+= apple.conf
|
|
.endif
|
|
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
.if ${MK_ACPI} != "no"
|
|
FILES+= asus.conf
|
|
.endif
|
|
FILES+= devmatch.conf
|
|
.if ${MK_HYPERV} != "no"
|
|
FILES+= hyperv.conf
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MK_USB} != "no"
|
|
FILES+= uath.conf ulpt.conf
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
FILES+= zfs.conf
|
|
.endif
|
|
|
|
NO_OBJ=
|
|
FILESDIR= /etc/devd
|
|
FILESMODE= 644
|
|
|
|
.include <bsd.prog.mk>
|