23 lines
500 B
Makefile
23 lines
500 B
Makefile
# $NetBSD: Makefile.booters,v 1.15 1999/01/30 12:39:28 simonb Exp $
|
|
# @(#)Makefile 8.3 (Berkeley) 2/16/94
|
|
|
|
# RELOC=80200000 allows for boot prog up to 1D0000 (1900544) bytes long
|
|
RELOC= 80200000
|
|
|
|
BOOTDEFS=-D_STANDALONE -DSMALL
|
|
AINC+= -D_LOCORE
|
|
CFLAGS+= ${DEFS}
|
|
AFLAGS+= ${DEFS}
|
|
|
|
# not yet: need to write libsa/Makefile.inc first
|
|
LIBSADIR!= cd ${.CURDIR}/../libsa ; make print-objdir
|
|
LIBSA= ${LIBSADIR}/libsa.a
|
|
LIBS= ${LIBSA}
|
|
|
|
${PROG}: ${LIBS}
|
|
|
|
includes:
|
|
|
|
.include <bsd.dep.mk>
|
|
.include <bsd.obj.mk>
|