comparison leo-obj/l1_custom_int/Makefile @ 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
children
comparison
equal deleted inserted replaced
176:10a9a0ca9d07 177:5fb64a7c3f92
1 OBJS= ind_os.obj l1_cust.obj
2 TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) $(patsubst %.obj,%.ctypes,${OBJS})
3 TOOL= ../tool/tiobjd
4
5 all: ${TARGETS}
6
7 %.disasm: %.obj %.hints
8 ${TOOL} $*.obj disasm -gl -h $*.hints > $@
9
10 %.disasm: %.obj
11 ${TOOL} $*.obj disasm -gl > $@
12
13 %.ctypes: %.obj
14 ${TOOL} $*.obj ctypes -o > $@
15
16 ${TARGETS}: ${TOOL} Makefile
17
18 clean:
19 rm -f *.disasm *.ctypes