view target-utils/c139-lldbg/Makefile @ 437:2cd705c8116e

loadtools: Mot C155 turns out to have the same flash partition quirks as the flash chip on TI's D-Sample c155.config changed to use the fixed 28f640w30b config instead of CFI, and a bit of C code in fc-loadtool had to be changed too so that flash erase-program-boot still works.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Nov 2018 16:02:23 +0000
parents d7ef80dce192
children bfddfecc52b2
line wrap: on
line source

CC=	arm-elf-gcc
CFLAGS=	-Os -fno-builtin
CPPFLAGS=-I../include
LD=	arm-elf-ld
OBJCOPY=arm-elf-objcopy

PROG=	lldbg
OBJS=	entry.o cmdtab.o entryinfo.o main.o mygetchar.o uartbase.o
LIBS=	../libcommon/libcommon.a ../libprintf/libprintf.a ../libbase/libbase.a \
	../libc/libc.a
LIBGCC=	`${CC} -print-file-name=libgcc.a`
LDS=	lldbg.lds

all:	${PROG}.bin

${PROG}.elf:	${OBJS} ${LIBS} ${LDS}
	${LD} -N -T ${LDS} -o $@ ${OBJS} ${LIBS} ${LIBGCC}

${PROG}.bin:	${PROG}.elf
	${OBJCOPY} -O binary $< $@

clean:
	rm -f *.o *errs *core *.elf *.bin *.srec crt0.S

FRC: