freebsd-dev/stand/ficl.mk

23 lines
503 B
Makefile
Raw Normal View History

2016-10-25 19:04:42 +00:00
# $FreeBSD$
# Common flags to build FICL related files
.if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 1
2016-10-25 19:04:42 +00:00
FICL_CPUARCH= i386
.elif ${MACHINE_ARCH:Mmips64*} != ""
2016-10-25 19:04:42 +00:00
FICL_CPUARCH= mips64
.else
FICL_CPUARCH= ${MACHINE_CPUARCH}
.endif
.if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
2016-10-25 19:04:42 +00:00
CFLAGS+= -fPIC
.endif
CFLAGS+= -I${FICLSRC} -I${FICLSRC}/${FICL_CPUARCH} -I${LDRSRC}
CFLAGS+= -DBF_DICTSIZE=15000
.if ${MK_LOADER_VERIEXEC} != "no"
CFLAGS+= -DLOADER_VERIEXEC -I${SRCTOP}/lib/libsecureboot/h
.endif