changeset 185:a820d9f9adbf

leo-obj: started analyzing tpudrv.lib objects
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 11 Aug 2014 21:32:30 +0000
parents 069b79b36228
children e03aba49d5b4
files leo-obj/tpudrv/Makefile leo-obj/tpudrv/p_tpudr12.obj leo-obj/tpudrv/tpudrv.obj leo-obj/tpudrv/tpudrv12.obj
diffstat 4 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/leo-obj/tpudrv/Makefile	Mon Aug 11 21:32:30 2014 +0000
@@ -0,0 +1,19 @@
+OBJS=	p_tpudr12.obj tpudrv.obj tpudrv12.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
Binary file leo-obj/tpudrv/p_tpudr12.obj has changed
Binary file leo-obj/tpudrv/tpudrv.obj has changed
Binary file leo-obj/tpudrv/tpudrv12.obj has changed