blob: fccd665848072870a60c3e3460a1cdc9f8a5a6a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile.booters,v 1.5 2016/09/17 18:09:24 christos Exp $
NOPIE= # defined
NOSSP= # defined
BINDIR= /usr/mdec/${BTYPE:tl}
DBG=
COPTS= -Os -fomit-frame-pointer -fno-function-cse -fstrength-reduce -fno-unwind-tables
CPPFLAGS+= -D_STANDALONE -DHEAP_VARIABLE
CPPFLAGS+= -D__daddr_t=int32_t
CFLAGS+= -ffreestanding
CFLAGS+= -Wall
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
CFLAGS+= -m68020-60
.include <bsd.klinks.mk>
|