Deleted Added
sdiff udiff text old ( 103436 ) new ( 125517 )
full compact
1# $FreeBSD: head/sys/boot/i386/mbr/Makefile 125517 2004-02-06 12:58:32Z ru $
2
3PROG= mbr
4NOMAN=
5STRIP=
6BINMODE= 444
7
8ORG= 0x600
9
10mbr: mbr.o
11 ${LD} -N -e start -Ttext ${ORG} -o mbr.out mbr.o
12 objcopy -S -O binary mbr.out ${.TARGET}
13
14CLEANFILES+= mbr.out mbr.o
15
16.include <bsd.prog.mk>