3fd01cc3f8
not promoted to 64bit. On 32bit PDC machines, IODC *requires* 32bit args and IODC can handle only 2GB, and need not to use 64bit integer.
20 lines
506 B
Makefile
20 lines
506 B
Makefile
# $NetBSD: Makefile,v 1.3 2003/10/21 12:35:23 itohy Exp $
|
|
|
|
# $OpenBSD: Makefile,v 1.10 2000/05/31 19:56:51 mickey Exp $
|
|
|
|
PROG= boot
|
|
PROGSOURCE= srt0.S boot.c conf.c tgets.c
|
|
NEWVERSWHAT= "LIF/FFS/LFS 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+= -DEXEC_DEBUG -DPDCDEBUG
|
|
#CPPFLAGS+= -DLIFDEBUG -DDEBUGBUG -DDEBUG
|
|
CPPFLAGS+= -Wmissing-prototypes -Wstrict-prototypes
|
|
WARNS= 2
|
|
|
|
.include "../Makefile.buildboot"
|