mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
12 lines
408 B
Makefile
12 lines
408 B
Makefile
# $FreeBSD$
|
|
# Options used when building app-specific libalpha components
|
|
|
|
BINDIR?= /boot
|
|
|
|
CFLAGS+= -ffreestanding -mno-fp-regs
|
|
LDFLAGS+= -nostdlib
|
|
PRIMARY_LOAD_ADDRESS= 0x20000000 # "Region 1 start"
|
|
SECONDARY_LOAD_ADDRESS= 0x2000c000 # "Region 1 start" + 48k
|
|
HEAP_LIMIT= 0x20040000 # "Region 1 start" + 256k
|
|
LIBSTANDDIR= ${.CURDIR}/../../../../lib/libstand
|
|
LIBALPHA= ${.OBJDIR}/../libalpha/libalpha.a
|