8f65b6a695
Noticed by: Scott Mace <smace@intt.org>
24 lines
466 B
Makefile
24 lines
466 B
Makefile
# $Id: Makefile,v 1.4 1998/09/25 17:14:15 peter Exp $
|
|
|
|
M4?= m4
|
|
|
|
ORG= 0x9000
|
|
|
|
all: btx
|
|
|
|
btx: btx.o
|
|
.if ${OBJFORMAT} == aout
|
|
${LD} -nostdlib -N -s -T ${ORG} -o btx.out btx.o
|
|
dd if=btx.out of=${.TARGET} ibs=32 skip=1
|
|
.else
|
|
${LD} -N -e start -Ttext ${ORG} -o btx.out btx.o
|
|
objcopy -S -O binary btx.out ${.TARGET}
|
|
.endif
|
|
|
|
btx.o: btx.m4 btx.s
|
|
(cd ${.CURDIR}; ${M4} btx.m4 btx.s) | ${AS} ${AFLAGS} -o ${.TARGET}
|
|
|
|
CLEANFILES+= btx btx.out btx.o
|
|
|
|
.include <bsd.prog.mk>
|