FreeCalypso > hg > freecalypso-reveng
view leo-obj/bootloader/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 | 4526143a77ce |
children |
line wrap: on
line source
OBJS= boot.obj bootloader.obj branch_in_RAM.obj cmdboot.obj command.obj \ convert.obj optboot.obj serial.obj start.obj TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) TOOL= ../tool/tiobjd all: ${TARGETS} %.disasm: %.obj %.hints ${TOOL} $*.obj disasm -h $*.hints > $@ %.disasm: %.obj ${TOOL} $*.obj disasm > $@ ${TARGETS}: ${TOOL} Makefile clean: rm -f *.disasm