xref: /freebsd/stand/efi/fdt/Makefile (revision f6a3b357e9be4c6423c85eff9a847163a0d307c8)
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# EFI library headers
13CFLAGS+=	-I${EFISRC}/include
14CFLAGS+=	-I${EFISRC}/include/${MACHINE}
15
16# libfdt headers
17CFLAGS+=	-I${FDTSRC}
18
19# Pick up the bootstrap header for some interface items
20CFLAGS+=	-I${LDRSRC}
21
22.include <bsd.lib.mk>
23