19 lines
424 B
Makefile
19 lines
424 B
Makefile
# $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"
|