blob: 04e8e79dcf8a8540da368cab73bd2c0807f1e743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile.inc,v 1.10 2013/02/10 20:27:18 miod Exp $
MDEC_DIR?=/usr/mdec
CFLAGS+=-Wall -Werror -fno-stack-protector
CFLAGS+=-fno-builtin-printf -fno-builtin-putchar -fno-builtin-vprintf
CFLAGS+=-DHEAP_START=${HEAP_START}
# Load addresses for first and second stage bootstraps
STAGE1_RELOC= 0x00100000
STAGE2_RELOC= 0x006f0000
# Base of the heap (ethernet buffers will be allocated below it)
HEAP_START= 0x00800000
|