ca987d4641
Sponsored by: Netflix
19 lines
346 B
Makefile
19 lines
346 B
Makefile
# $FreeBSD$
|
|
|
|
SRCS+= main.c metadata.c
|
|
|
|
.PATH: ${UBOOTSRC}/common
|
|
|
|
CFLAGS+= -I${UBOOTSRC}/common
|
|
|
|
# U-Boot standalone support library
|
|
LIBUBOOT= ${BOOTOBJ}/uboot/lib/libuboot.a
|
|
CFLAGS+= -I${UBOOTSRC}/lib
|
|
CFLAGS+= -I${BOOTOBJ}/uboot/lib
|
|
|
|
.include "${BOOTSRC}/fdt.mk"
|
|
|
|
.if ${MK_FDT} == "yes"
|
|
LIBUBOOT_FDT= ${BOOTOBJ}/uboot/fdt/libuboot_fdt.a
|
|
.endif
|