FreeCalypso > hg > freecalypso-tools
view target-utils/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 | eb26467a1d2a |
children | ba4171b2f980 |
line wrap: on
line source
INSTPROGS= buzplayer compalstage c139explore loadagent pirexplore ALLPROGS= ${INSTPROGS} c139-lldbg flash-boot-test flash-boot-wa helloapp \ tf-breakin LIBS= libbase libc libcommon libload libprintf libtiffs SUBDIR= ${ALLPROGS} ${LIBS} default: ${INSTPROGS} all: ${ALLPROGS} buzplayer: libbase libc libcommon libprintf c139explore: libbase libc libcommon libprintf c139-lldbg: libbase libc libcommon libprintf flash-boot-test: libbase libc libcommon libprintf helloapp: libbase libc libcommon libprintf loadagent: libbase libc libcommon libload libprintf pirexplore: libbase libc libcommon libprintf libtiffs ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} install: FRC for i in ${INSTPROGS}; do (cd $$i; ${MAKE} ${MFLAGS} install); done clean: FRC rm -f a.out core errs for i in ${SUBDIR}; do \ if [ -d $$i ]; then \ (cd $$i; ${MAKE} ${MFLAGS} clean) \ fi \ done FRC: