Home | History | Annotate | Line # | Download | only in boot
Makefile revision 1.3
      1  1.3  simonb #	$NetBSD: Makefile,v 1.3 1999/03/27 07:17:51 simonb Exp $
      2  1.1  simonb #	@(#)Makefile	8.3 (Berkeley) 2/16/94
      3  1.1  simonb 
      4  1.1  simonb S=	${.CURDIR}/../../../..
      5  1.1  simonb 
      6  1.3  simonb PROG=		boot
      7  1.3  simonb RELOC=		80710000
      8  1.3  simonb BINMODE=	555
      9  1.3  simonb MKMAN=		no
     10  1.3  simonb SRCS=		start.S boot.c
     11  1.3  simonb NEWVERSWHAT=	"Secondary Boot"
     12  1.3  simonb VERSIONFILE=	${.CURDIR}/version
     13  1.3  simonb .PATH:  	${.CURDIR}/../lib
     14  1.1  simonb 
     15  1.1  simonb # XXX These aren't build by libkern at the moment - fix libkern?
     16  1.3  simonb SRCS+=		bcmp.c bzero.c
     17  1.3  simonb .PATH:		$S/lib/libkern
     18  1.1  simonb 
     19  1.3  simonb # Copy boot to / as well.
     20  1.3  simonb afterinstall:
     21  1.3  simonb 	cp -p ${DESTDIR}${BINDIR}/${PROG} ${DESTDIR}/
     22  1.1  simonb 
     23  1.3  simonb .include "../Makefile.booters"
     24