22 lines
493 B
Makefile
22 lines
493 B
Makefile
# $Id: Makefile,v 1.3 1998/09/17 23:52:04 msmith Exp $
|
|
|
|
ORG=0x100000
|
|
|
|
all: btxldr
|
|
|
|
btxldr: btxldr.o
|
|
.if ${OBJFORMAT} == aout
|
|
${LD} -nostdlib -N -s -T ${ORG} -o btxldr.out btxldr.o
|
|
dd if=btxldr.out of=${.TARGET} ibs=32 skip=1
|
|
.else
|
|
${LD} -N -e start -Ttext ${ORG} -o btxldr.out btxldr.o
|
|
/usr/libexec/elf/objcopy -S -O binary btxldr.out ${.TARGET}
|
|
.endif
|
|
|
|
btxldr.o: btxldr.s
|
|
${AS} ${AFLAGS} -o ${.TARGET} ${.CURDIR}/btxldr.s
|
|
|
|
CLEANFILES+= btxldr btxldr.out btxldr.o
|
|
|
|
.include <bsd.prog.mk>
|