NetBSD/sys/arch/hp700/stand/boot/Makefile
itohy 3fd01cc3f8 Add -D__daddr_t=int32_t so that the arguments of IODC are
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.
2003-10-21 12:35:23 +00:00

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"