# HG changeset patch # User Michael Spacefalcon # Date 1408299966 0 # Node ID d339548ebfc442121972f422c1a5dce8e40aba6a # Parent e03aba49d5b485b7f8211c8edb963ddaed4d3150 leo-obj: started looking at dl1_com.obj diff -r e03aba49d5b4 -r d339548ebfc4 .hgignore --- 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$ diff -r e03aba49d5b4 -r d339548ebfc4 leo-obj/Makefile --- 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} diff -r e03aba49d5b4 -r d339548ebfc4 leo-obj/l1_int/Makefile --- /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 diff -r e03aba49d5b4 -r d339548ebfc4 leo-obj/l1_int/dl1_com.obj Binary file leo-obj/l1_int/dl1_com.obj has changed