7cedf69cbd
ports' boot programs. Also added support for loading gzip'd kernels, useful for booting from floppy. From Jason R. Thorpe <thorpej@nas.nasa.gov>, tested by Matthew Green <mrg@eterna.com.au> and Erik Fair <fair@clock.org>.
16 lines
311 B
Makefile
16 lines
311 B
Makefile
# $NetBSD: Makefile,v 1.8 1997/06/01 03:39:29 mrg Exp $
|
|
|
|
PROG= bootxx
|
|
PROGSOURCE= bootxx.c
|
|
|
|
.include "../Makefile.buildboot"
|
|
|
|
CPPFLAGS+= -DBOOTXX
|
|
STRIPFLAG=
|
|
|
|
${PROG}: ${OBJS} ${LIBSA} ${LIBKERN}
|
|
${LD} -o ${.TARGET} -N -T ${RELOC} -e start ${OBJS} ${LIBSA} ${LIBKERN}
|
|
@size ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|