xref: /freebsd-12.1/stand/uboot/fdt/Makefile (revision fcdb1f03)
1# $FreeBSD$
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