NetBSD/sys/arch/mipsco/stand/bootxx_ffs/Makefile
simonb dc1d6c5fbd Use a 32-bit daddr_t so that lib/libsa/{ufs,lfs}.c don't pull in 64
bit divide and modulus library routines that break the tight space
constraints on this platform.
2003-02-02 00:08:55 +00:00

12 lines
295 B
Makefile

# $NetBSD: Makefile,v 1.2 2003/02/02 00:08:55 simonb Exp $
PRIMARY_PROG= bootxx_ffs
CPPFLAGS+= -DLIBSA_SINGLE_FILESYSTEM=ufs \
-DBOOTXX_FS_NAME='"FFS"'
# Use small daddr_t to avoid code bloat
CPPFLAGS+= -D__daddr_t=int32_t
PRIMARY_MAX_LOAD!= expr 8192 - 1024
.include "../Makefile.booters"