freebsd-dev/stand/ficl.mk

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
379 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
.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=30000
.include "${BOOTSRC}/veriexec.mk"