changeset 177:5fb64a7c3f92

leo-obj/l1_custom_int: added
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 10 Jul 2014 03:16:42 +0000
parents 10a9a0ca9d07
children 62e782341ef0
files leo-obj/Makefile leo-obj/l1_custom_int/Makefile leo-obj/l1_custom_int/ind_os.obj leo-obj/l1_custom_int/l1_cust.obj
diffstat 4 files changed, 20 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/leo-obj/Makefile	Sun Jul 06 20:22:09 2014 +0000
+++ b/leo-obj/Makefile	Thu Jul 10 03:16:42 2014 +0000
@@ -1,4 +1,4 @@
-OBJDIRS=frame_na7_db_fl frame_na7_db_ir main osx_na7_db
+OBJDIRS=frame_na7_db_fl frame_na7_db_ir l1_custom_int main osx_na7_db
 SUBDIR=	${OBJDIRS} tool
 
 all:	${SUBDIR}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/leo-obj/l1_custom_int/Makefile	Thu Jul 10 03:16:42 2014 +0000
@@ -0,0 +1,19 @@
+OBJS=	ind_os.obj l1_cust.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/l1_custom_int/ind_os.obj has changed
Binary file leo-obj/l1_custom_int/l1_cust.obj has changed