view frbl/reconst/Makefile @ 320:20feaf83c661

frbl/reconst/convert.c: better match to original object still not perfect though
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 05 Mar 2020 05:01:14 +0000
parents f9482000b838
children 24d7d7875ee9
line wrap: on
line source

CFLAGS=	-mn -mt -mw -me -pw2
CPPFLAGS=-DTOOL_CHOICE=0 -D_TMS470 -I. -Iinc
OBJS=	boot.obj convert.obj
DISASM=	boot.disasm convert.disasm

all:	${OBJS} ${DISASM}

%.obj:	%.c
	./cl470 -q -c ${CFLAGS} ${CPPFLAGS} $<

%.disasm:	%.obj
	tiobjd $< disasm > $@

clean:
	rm -f *.obj *.disasm