Makefile revision 91696
1# $FreeBSD: head/sys/boot/sparc64/boot1/Makefile 91696 2002-03-05 16:39:36Z robert $
2
3BOOTBLOCKBASE=	0x4000
4
5CFLAGS=	-W -Wall -I../../ -I../../common/ -Os \
6	-DBOOTBLOCKBASE=${BOOTBLOCKBASE} \
7	-ffreestanding -mno-app-regs -mcmodel=medlow
8OBJ=	boot1.o
9
10all:	boot1
11
12boot1.o:	boot1.c
13	${CC} ${CFLAGS} -c -o ${.TARGET} ${.ALLSRC}
14
15boot1:	${OBJ}
16	${LD} -N -Ttext ${BOOTBLOCKBASE} -e main -o boot1 ${OBJ}
17	/usr/local/bin/elftoaout boot1
18clean:
19	rm -f *.o boot1
20