d22f5cff9c
- bbinfo_params: - replace "int littleendian" with "bbinfo_endian endian" - add comments - shared_bbinfo_clearboot(): - add callback method to shared_bbinfo_clearboot() - don't clear from 0..headeroffset; use a callback to do that - add news68k and newsmips support. From Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>, with a rework by me to take advantage of the new shared_bbinfo_clearboot() callback. (XXX: untested yet)
21 lines
425 B
Makefile
21 lines
425 B
Makefile
# $NetBSD: Makefile,v 1.20 2002/05/20 16:05:26 lukem Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= installboot
|
|
SRCS= installboot.c sum.c machines.c fstypes.c \
|
|
ffs.c ffs_bswap.c bbinfo.c \
|
|
alpha.c macppc.c news.c pmax.c sparc.c sparc64.c sun68k.c vax.c
|
|
MAN= installboot.8
|
|
|
|
WARNS?= 3
|
|
|
|
UFSSRC= ${NETBSDSRCDIR}/sys/ufs
|
|
CPPFLAGS+= -I${.CURDIR} -I.
|
|
.PATH: ${.CURDIR}/arch ${UFSSRC}/ffs
|
|
|
|
.ifndef HOSTPROG
|
|
.include <bsd.prog.mk>
|
|
.endif
|