Makefile revision 332131
1# $FreeBSD: stable/11/stand/uboot/fdt/Makefile 332131 2018-04-06 19:01:08Z kevans $
2
3.include <bsd.init.mk>
4
5.PATH: ${LDRSRC}
6
7LIB=		uboot_fdt
8WARNS?=		2
9
10SRCS=		uboot_fdt.c
11
12# U-Boot library headers
13CFLAGS+=	-I${UBOOTSRC}/lib
14
15# libfdt headers
16CFLAGS+=	-I${FDTSRC}
17
18# Pick up the bootstrap header for some interface items
19CFLAGS+=	-I${LDRSRC}
20
21.include <bsd.lib.mk>
22