FreeCalypso > hg > freecalypso-reveng
changeset 187:d339548ebfc4
leo-obj: started looking at dl1_com.obj
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 17 Aug 2014 18:26:06 +0000 |
parents | e03aba49d5b4 |
children | 3e78a1bf9ebc |
files | .hgignore leo-obj/Makefile leo-obj/l1_int/Makefile leo-obj/l1_int/dl1_com.obj |
diffstat | 4 files changed, 26 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Fri Aug 15 00:59:45 2014 +0000 +++ b/.hgignore Sun Aug 17 18:26:06 2014 +0000 @@ -15,6 +15,7 @@ ^leo-obj/.*\.ctypes$ ^leo-obj/.*\.disasm$ +^leo-obj/.*\.symtab$ ^leo-obj/tool/tiobjd$ ^miscprog/atsc$
--- a/leo-obj/Makefile Fri Aug 15 00:59:45 2014 +0000 +++ b/leo-obj/Makefile Sun Aug 17 18:26:06 2014 +0000 @@ -1,4 +1,5 @@ -OBJDIRS=frame_na7_db_fl frame_na7_db_ir l1_custom_int main osx_na7_db +OBJDIRS=frame_na7_db_fl frame_na7_db_ir l1_custom_int l1_int main osx_na7_db \ + tpudrv SUBDIR= ${OBJDIRS} tool all: ${SUBDIR}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/leo-obj/l1_int/Makefile Sun Aug 17 18:26:06 2014 +0000 @@ -0,0 +1,23 @@ +OBJS= dl1_com.obj +TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) $(patsubst %.obj,%.ctypes,${OBJS}) \ + dl1_com.symtab +TOOL= ../tool/tiobjd + +all: ${TARGETS} + +%.disasm: %.obj %.hints + ${TOOL} $*.obj disasm -gl -h $*.hints > $@ + +%.disasm: %.obj + ${TOOL} $*.obj disasm -gl > $@ + +%.ctypes: %.obj + ${TOOL} $*.obj ctypes -o > $@ + +dl1_com.symtab: dl1_com.obj + ${TOOL} dl1_com.obj symtab > $@ + +${TARGETS}: ${TOOL} Makefile + +clean: + rm -f *.disasm *.ctypes *.symtab