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