annotate leo-obj/l1_custom_int/Makefile @ 186:e03aba49d5b4

leo-obj/tpudrv/tpudrv12.hints: literal pools and branches around them
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 15 Aug 2014 00:59:45 +0000
parents 5fb64a7c3f92
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
177
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
1 OBJS= ind_os.obj l1_cust.obj
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2 TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) $(patsubst %.obj,%.ctypes,${OBJS})
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
3 TOOL= ../tool/tiobjd
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
4
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5 all: ${TARGETS}
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
6
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7 %.disasm: %.obj %.hints
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 ${TOOL} $*.obj disasm -gl -h $*.hints > $@
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10 %.disasm: %.obj
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11 ${TOOL} $*.obj disasm -gl > $@
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
13 %.ctypes: %.obj
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
14 ${TOOL} $*.obj ctypes -o > $@
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
16 ${TARGETS}: ${TOOL} Makefile
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
17
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
18 clean:
5fb64a7c3f92 leo-obj/l1_custom_int: added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
19 rm -f *.disasm *.ctypes