comparison 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
comparison
equal deleted inserted replaced
200:cc6594a7fc7a 201:59de85ae94a7
1 CC= arm-elf-gcc
2 CFLAGS= -Os -fno-builtin
3 CPPFLAGS=-I../include
4 LD= arm-elf-ld
5 OBJCOPY=arm-elf-objcopy
6
7 PROG= flash-boot-wa
8 LDS= ../env/iram.lds
9
10 all: ${PROG}.srec
11
12 ${PROG}.elf: ${PROG}.o ${LDS}
13 ${LD} -N --defsym Base_addr=0x820000 -T ${LDS} -o $@ ${PROG}.o
14
15 ${PROG}.srec: ${PROG}.elf
16 ${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@
17
18 clean:
19 rm -f *.o *errs *core *.elf *.bin *.srec
20
21 FRC: