475008d6ca
Since rS330365, there has been no particular reason for libofw to be in a subdirectory of ofw. Move libofw up a level to make it fit in better with the other top level libraries. Also add a LIBOFWSRC to stand/defs.mk to match what all the other libraries are doing. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D23000
42 lines
847 B
Makefile
42 lines
847 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
# For amd64 we have to build 32 and 64 bit versions of things. For
|
|
# others we don't. LIB32LIST is a list of libraries, which if
|
|
# included, need to be built 32-bit as well.
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
LIB32LIST=libsa ficl liblua
|
|
.endif
|
|
|
|
S.yes+= libsa
|
|
|
|
S.${MK_FORTH}+= ficl
|
|
S.${MK_FORTH}+= forth
|
|
S.${MK_LOADER_LUA}+= liblua
|
|
S.${MK_LOADER_LUA}+= lua
|
|
S.${MK_FDT}+= fdt
|
|
S.${MK_LOADER_OFW}+= libofw
|
|
S.yes+= defaults
|
|
S.yes+= man
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
S.${MK_EFI}+= efi
|
|
S.${MK_LOADER_UBOOT}+= uboot
|
|
|
|
.if exists(${.CURDIR}/${MACHINE}/.)
|
|
S.yes+= ${MACHINE}
|
|
.endif
|
|
|
|
# Build the actual subdir list from S.yes, adding in the 32-bit
|
|
# variant if necessary.
|
|
.for _x in ${S.yes}
|
|
SUBDIR+=${_x}
|
|
.if defined(LIB32LIST) && ${LIB32LIST:M${_x}}
|
|
SUBDIR+=${_x}32
|
|
.endif
|
|
.endfor
|
|
|
|
.include <bsd.subdir.mk>
|