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