xref: /freebsd/stand/efi/fdt/Makefile (revision 214e3e09b3381e44bf5d9c1dcd19c4b1b923a796)
1
2.include <bsd.init.mk>
3
4.PATH: ${LDRSRC}
5
6LIB=		efi_fdt
7WARNS?=		6
8
9SRCS=		efi_fdt.c
10
11.include	"${BOOTSRC}/veriexec.mk"
12
13# EFI library headers
14CFLAGS+=	-I${EFISRC}/include
15CFLAGS+=	-I${EFISRC}/include/${MACHINE}
16
17# libfdt headers
18CFLAGS+=	-I${FDTSRC}
19
20# Pick up the bootstrap header for some interface items
21CFLAGS+=	-I${LDRSRC}
22
23.include <bsd.lib.mk>
24