fcdb1f0317
OK. We don't really need a bsd.stand.mk, and it was causing a -fPIC for the toolchain to be added (bogusly) when building on amd64. Pull all relevant defs back into defs.mk and delete bsd.stand.mk. This saves about 15-20k on i386 loader and zfsloader which when combined with Lua give us a lot more stack space in those constrained environments.
21 lines
395 B
Makefile
21 lines
395 B
Makefile
# $FreeBSD$
|
|
|
|
.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 <bsd.lib.mk>
|