FreeCalypso > hg > freecalypso-tools
view rvinterf/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 | 67d683a87b1d |
children | 8f3fe2d1fda5 |
line wrap: on
line source
PROGDIR=asyncshell ctracedec etmsync lowlevel rvtat tmsh LIBDIR= libasync libg23 libinterf SUBDIR= ${PROGDIR} ${LIBDIR} INCLUDE_INSTALL_DIR= /opt/freecalypso/include/rvinterf all: ${SUBDIR} asyncshell: libasync libg23 libinterf etmsync: libinterf lowlevel: libg23 rvtat: libinterf tmsh: libasync libinterf ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} clean: FRC rm -f a.out core errs for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done install: FRC for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done mkdir -p ${INCLUDE_INSTALL_DIR} install -c -m 644 include/* ${INCLUDE_INSTALL_DIR} FRC: