1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Install in /boot.

This commit is contained in:
Robert Nordier 1998-10-05 19:20:36 +00:00
parent e0ce825e94
commit 09c7ea1cc8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39980

View File

@ -1,11 +1,14 @@
# $Id:$
# $Id: Makefile,v 1.1.1.1 1998/10/05 10:08:37 rnordier Exp $
PROG= boot0
NOMAN=
STRIP=
BINDIR?= /boot
M4?= m4
ORG= 0x600
all: boot0
boot0: boot0.o
${LD} -N -e start -Ttext ${ORG} -o boot0.out boot0.o
/usr/libexec/elf/objcopy -S -O binary boot0.out ${.TARGET}
@ -14,6 +17,6 @@ boot0.o: boot0.m4 boot0.s
(cd ${.CURDIR}; ${M4} boot0.m4 boot0.s) | \
${AS} ${AFLAGS} -o ${.TARGET}
CLEANFILES+= boot0 boot0.out boot0.o
CLEANFILES+= boot0.out boot0.o
.include <bsd.prog.mk>