FreeCalypso > hg > freecalypso-reveng
changeset 201:0f767203114a
leo-obj: need to look at l1_dyn_dwl objects
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 04 Jul 2015 02:30:27 +0000 |
parents | 492a6360e64d |
children | 2976621a6cbd |
files | leo-obj/Makefile leo-obj/l1_dyn_dwl/Makefile leo-obj/l1_dyn_dwl/l1_dyn_dwl_afunc.obj leo-obj/l1_dyn_dwl/l1_dyn_dwl_apihisr.obj leo-obj/l1_dyn_dwl/l1_dyn_dwl_async.obj leo-obj/l1_dyn_dwl/l1_dyn_dwl_func.obj leo-obj/l1_dyn_dwl/l1_dyn_dwl_init.obj leo-obj/l1_dyn_dwl/l1_dyn_dwl_sync.obj |
diffstat | 8 files changed, 22 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/leo-obj/Makefile Sat Jun 06 18:32:49 2015 +0000 +++ b/leo-obj/Makefile Sat Jul 04 02:30:27 2015 +0000 @@ -1,5 +1,5 @@ -OBJDIRS=frame_na7_db_fl frame_na7_db_ir l1_custom_int l1_int l1_pei main \ - osx_na7_db tpudrv +OBJDIRS=bootloader frame_na7_db_fl frame_na7_db_ir l1_custom_int l1_dyn_dwl \ + l1_int l1_pei main osx_na7_db tpudrv SUBDIR= ${OBJDIRS} tool all: ${SUBDIR}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/leo-obj/l1_dyn_dwl/Makefile Sat Jul 04 02:30:27 2015 +0000 @@ -0,0 +1,20 @@ +OBJS= l1_dyn_dwl_afunc.obj l1_dyn_dwl_apihisr.obj l1_dyn_dwl_async.obj \ + l1_dyn_dwl_func.obj l1_dyn_dwl_init.obj l1_dyn_dwl_sync.obj +TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) $(patsubst %.obj,%.ctypes,${OBJS}) +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 > $@ + +${TARGETS}: ${TOOL} Makefile + +clean: + rm -f *.disasm *.ctypes