# HG changeset patch # User Michael Spacefalcon # Date 1404962202 0 # Node ID 5fb64a7c3f928f0c7c9a920ab31d403064f8c9ea # Parent 10a9a0ca9d070da9276327beab9a2fe3653583f2 leo-obj/l1_custom_int: added diff -r 10a9a0ca9d07 -r 5fb64a7c3f92 leo-obj/Makefile --- 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} diff -r 10a9a0ca9d07 -r 5fb64a7c3f92 leo-obj/l1_custom_int/Makefile --- /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 diff -r 10a9a0ca9d07 -r 5fb64a7c3f92 leo-obj/l1_custom_int/ind_os.obj Binary file leo-obj/l1_custom_int/ind_os.obj has changed diff -r 10a9a0ca9d07 -r 5fb64a7c3f92 leo-obj/l1_custom_int/l1_cust.obj Binary file leo-obj/l1_custom_int/l1_cust.obj has changed