mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
f8080a9986
for i386/amd64. Rather, it only works on i386/amd64 and should only be built there. Rather than change the default based on which architecutre, do things more directly by only building it on i386/amd64 and having it always on. This is how we handle other options that are relevant only for a few architectures.
29 lines
401 B
Makefile
29 lines
401 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
FILES+= apple.conf
|
|
.endif
|
|
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
|
|
FILES+= asus.conf
|
|
.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>
|