FreeCalypso > hg > freecalypso-tools
view target-utils/c139explore/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 | 3431a069254f |
children | 58d3a0634272 |
line wrap: on
line source
CC= arm-elf-gcc CFLAGS= -Os -fno-builtin CPPFLAGS=-I../include LD= arm-elf-ld OBJCOPY=arm-elf-objcopy INSTDIR=/opt/freecalypso/target-bin PROG= c139explore OBJS= crt0.o backlight.o cmdtab.o dac.o lcd.o main.o mygetchar.o uartbase.o \ uwire.o LIBS= ../libcommon/libcommon.a ../libprintf/libprintf.a ../libbase/libbase.a \ ../libc/libc.a LIBGCC= `${CC} -print-file-name=libgcc.a` LDS= ../env/compalram.lds all: ${PROG}.bin crt0.S: ../env/crt0.S ln -s $< . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N -T ${LDS} -o $@ ${OBJS} ${LIBS} ${LIBGCC} ${PROG}.bin: ${PROG}.elf ${OBJCOPY} -O binary $< $@ install: mkdir -p ${INSTDIR} install -c -m 644 ${PROG}.bin ${INSTDIR} clean: rm -f *.o *errs *core *.elf *.bin *.srec crt0.S FRC: