view target-utils/flash-boot-wa/Makefile @ 201:59de85ae94a7

target-utils/flash-boot-wa written
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 01 May 2017 21:02:58 +0000
parents
children b81176fe68a7
line wrap: on
line source

CC=	arm-elf-gcc
CFLAGS=	-Os -fno-builtin
CPPFLAGS=-I../include
LD=	arm-elf-ld
OBJCOPY=arm-elf-objcopy

PROG=	flash-boot-wa
LDS=	../env/iram.lds

all:	${PROG}.srec

${PROG}.elf:	${PROG}.o ${LDS}
	${LD} -N --defsym Base_addr=0x820000 -T ${LDS} -o $@ ${PROG}.o

${PROG}.srec:	${PROG}.elf
	${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@

clean:
	rm -f *.o *errs *core *.elf *.bin *.srec

FRC: