xref: /NextBSD/etc/devd/Makefile (revision 287e3b14e9552995def1802ec9c5034f4adf28ec)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5FILES=
6
7.if ${MACHINE} == "powerpc"
8FILES+=	apple.conf
9.endif
10
11.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
12.if ${MK_ACPI} != "no"
13FILES+=	asus.conf
14.endif
15.if ${MK_HYPERV} != "no"
16FILES+=	hyperv.conf
17.endif
18.endif
19
20.if ${MK_USB} != "no"
21FILES+=	uath.conf ulpt.conf usb.conf
22.endif
23
24.if ${MK_ZFS} != "no"
25FILES+=	zfs.conf
26.endif
27
28NO_OBJ=
29FILESDIR=	/etc/devd
30FILESMODE=	644
31
32.include <bsd.prog.mk>
33