]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/uboot/fdt/Makefile
MFC r325834,r325997,326502: Move sys/boot to stand/
[FreeBSD/FreeBSD.git] / stand / uboot / fdt / Makefile
1 # $FreeBSD$
2
3 .include <bsd.init.mk>
4
5 .PATH: ${LDRSRC}
6
7 LIB=            uboot_fdt
8 INTERNALLIB=
9 WARNS?=         2
10
11 SRCS=           uboot_fdt.c
12
13 CFLAGS+=        -ffreestanding -msoft-float
14
15 # U-Boot library headers
16 CFLAGS+=        -I${UBOOTSRC}/lib
17
18 # libfdt headers
19 CFLAGS+=        -I${FDTSRC}
20
21 # Pick up the bootstrap header for some interface items
22 CFLAGS+=        -I${LDRSRC}
23
24 .include <bsd.stand.mk>
25 .include <bsd.lib.mk>