19 lines
398 B
Makefile
19 lines
398 B
Makefile
# $NetBSD: Makefile,v 1.5 1999/04/11 04:25:15 simonb Exp $
|
|
# @(#)Makefile 8.3 (Berkeley) 2/16/94
|
|
|
|
S= ${.CURDIR}/../../../..
|
|
|
|
PROG= boot
|
|
RELOC= 80710000
|
|
BINMODE= 555
|
|
SRCS= start.S boot.c
|
|
NEWVERSWHAT= "Secondary Boot"
|
|
VERSIONFILE= ${.CURDIR}/version
|
|
.PATH: ${.CURDIR}/../lib
|
|
|
|
# Copy boot to / as well.
|
|
afterinstall:
|
|
cp -p ${DESTDIR}${BINDIR}/${PROG} ${DESTDIR}/
|
|
|
|
.include "../Makefile.booters"
|