blob: a104b0c94fc476e695db57870a482ae0b70783eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile,v 1.1 2014/02/24 07:23:43 skrll Exp $
PROG= cdboot
PROGSOURCE= srt0.S cdboot.c conf.c
NEWVERSWHAT= "CD Boot"
CLEANFILES+= boot.gdb boot.map
# IODC can handle only 2GB, and need not to use 64bit integer
CPPFLAGS+= -D__daddr_t=int32_t
#CPPFLAGS+= -DDEBUGBUG
#CPPFLAGS+= -DPDCDEBUG
#CPPFLAGS+= -DEXEC_DEBUG
CPPFLAGS+= -Wmissing-prototypes -Wstrict-prototypes
WARNS= 2
.include "../Makefile.buildboot"
|