diff leo-obj/l1_custom_ext/Makefile @ 216:4b97cf9a90f0

leo-obj: started analyzing l1audio_cust.obj in l1_custom_ext.lib
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 14 Mar 2017 06:04:28 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/leo-obj/l1_custom_ext/Makefile	Tue Mar 14 06:04:28 2017 +0000
@@ -0,0 +1,19 @@
+OBJS=	l1audio_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