mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-21 07:15:49 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
21 lines
417 B
Makefile
21 lines
417 B
Makefile
.include <bsd.init.mk>
|
|
|
|
.PATH: ${SYSDIR}/contrib/libfdt/
|
|
|
|
LIB= fdt
|
|
|
|
# Vendor sources of libfdt.
|
|
SRCS+= fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c \
|
|
fdt_empty_tree.c fdt_addresses.c fdt_overlay.c
|
|
|
|
# Loader's fdt commands extension sources.
|
|
SRCS+= fdt_loader_cmd.c
|
|
|
|
CFLAGS+= -I${SYSDIR}/contrib/libfdt/ -I${LDRSRC}
|
|
|
|
CFLAGS+= -Wformat -Wall
|
|
|
|
.include "${BOOTSRC}/veriexec.mk"
|
|
|
|
.include <bsd.lib.mk>
|