FreeCalypso > hg > freecalypso-reveng
annotate 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 |
rev | line source |
---|---|
98
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
1 C139= c139-boot.90.04.bin |
99
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
2 C140= c140-boot.bin |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
3 GEN= c139-boot.dis16 c139-boot.dis32 c139-boot.hex \ |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
4 c140-boot.dis16 c140-boot.dis32 c140-boot.hex |
98
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
5 ARMDIS= ../arm7dis/armdis |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
6 THUMBDIS=../arm7dis/thumbdis |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
7 |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
8 all: ${GEN} |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
9 |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
10 c139-boot.dis16: ${C139} ${THUMBDIS} |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
11 ${THUMBDIS} ${C139} > $@ |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
12 |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
13 c139-boot.dis32: ${C139} ${ARMDIS} |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
14 ${ARMDIS} ${C139} > $@ |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
15 |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
16 c139-boot.hex: ${C139} |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
17 hd ${C139} > $@ |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
18 |
99
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
19 c140-boot.dis16: ${C140} ${THUMBDIS} |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
20 ${THUMBDIS} ${C140} > $@ |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
21 |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
22 c140-boot.dis32: ${C140} ${ARMDIS} |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
23 ${ARMDIS} ${C140} > $@ |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
24 |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
25 c140-boot.hex: ${C140} |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
26 hd ${C140} > $@ |
3bd695d9b2b4
C139 boot re: C140 differences noted
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
98
diff
changeset
|
27 |
98
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
28 clean: |
8eaa265ee292
C139 boot re setup using the new arm7dis
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
29 rm -f ${GEN} |