comparison compal/Makefile @ 99:3bd695d9b2b4

C139 boot re: C140 differences noted
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 31 Mar 2014 01:05:44 +0000
parents 8eaa265ee292
children a39a38bbec4d
comparison
equal deleted inserted replaced
98:8eaa265ee292 99:3bd695d9b2b4
1 C139= c139-boot.90.04.bin 1 C139= c139-boot.90.04.bin
2 GEN= c139-boot.dis16 c139-boot.dis32 c139-boot.hex 2 C140= c140-boot.bin
3 GEN= c139-boot.dis16 c139-boot.dis32 c139-boot.hex \
4 c140-boot.dis16 c140-boot.dis32 c140-boot.hex
3 ARMDIS= ../arm7dis/armdis 5 ARMDIS= ../arm7dis/armdis
4 THUMBDIS=../arm7dis/thumbdis 6 THUMBDIS=../arm7dis/thumbdis
5 7
6 all: ${GEN} 8 all: ${GEN}
7 9
12 ${ARMDIS} ${C139} > $@ 14 ${ARMDIS} ${C139} > $@
13 15
14 c139-boot.hex: ${C139} 16 c139-boot.hex: ${C139}
15 hd ${C139} > $@ 17 hd ${C139} > $@
16 18
19 c140-boot.dis16: ${C140} ${THUMBDIS}
20 ${THUMBDIS} ${C140} > $@
21
22 c140-boot.dis32: ${C140} ${ARMDIS}
23 ${ARMDIS} ${C140} > $@
24
25 c140-boot.hex: ${C140}
26 hd ${C140} > $@
27
17 clean: 28 clean:
18 rm -f ${GEN} 29 rm -f ${GEN}