19 lines
515 B
Makefile
19 lines
515 B
Makefile
## code generation
|
|
# FLASHSTART=0x0
|
|
RAMSTART=0x10000000
|
|
# WATCHDOG=1
|
|
|
|
include ${T32SYS}/demo/arm/compiler/gnu-make/cortex-a-aarch64/makefile
|
|
|
|
target: target-a53
|
|
|
|
|
|
jtagenable_odroid_c2.bin:
|
|
make -f ${T32SYS}/demo/arm/compiler/gnu-make/pic/makefile RAMSTART=0x20000000 jtagenable_pic_aarch64.elf
|
|
$(CC-AARCH64)objcopy -O binary jtagenable_pic_aarch64.elf $@
|
|
rm jtagenable_pic_aarch64.elf crt0-pic.s
|
|
|
|
# include special-rule.mk.internal if existing - for Lauterbach internal usage
|
|
-include special-rule.mk.internal
|
|
|