mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
17 lines
367 B
Makefile
17 lines
367 B
Makefile
|
|
# Common flags to build FICL related files
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 1
|
|
FICL_CPUARCH= i386
|
|
.else
|
|
FICL_CPUARCH= ${MACHINE_CPUARCH}
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
CFLAGS+= -I${FICLSRC} -I${FICLSRC}/${FICL_CPUARCH} -I${LDRSRC}
|
|
CFLAGS+= -DBF_DICTSIZE=30000
|
|
|
|
.include "${BOOTSRC}/veriexec.mk"
|