view leo-obj/l1_int/Makefile @ 208:f7943bdbb3ea

tiobjd disasm -g: grok struct/union/enum definitions and statics in functions
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Fri, 04 Mar 2016 23:36:16 +0000
parents d339548ebfc4
children
line wrap: on
line source

OBJS=	dl1_com.obj
TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) $(patsubst %.obj,%.ctypes,${OBJS}) \
	dl1_com.symtab
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 > $@

dl1_com.symtab:	dl1_com.obj
	${TOOL} dl1_com.obj symtab > $@

${TARGETS}:	${TOOL} Makefile

clean:
	rm -f *.disasm *.ctypes *.symtab