FreeCalypso > hg > freecalypso-tools
view target-utils/Makefile @ 4:971906d7763d
fc-shell tch commands: changed to raw hex file format
This "backward" change is needed for two reasons:
1) to support EFR in addition to 06.10
2) to preserve the DSP status words for the downlink
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Tue, 14 Jun 2016 01:02:48 +0000 | 
| parents | e7502631a0f9 | 
| children | 647a7bdba4be | 
line wrap: on
 line source
FOR_LOADTOOLS= compalstage loadagent ALLPROGS= ${FOR_LOADTOOLS} c139explore c139-lldbg helloapp pirexplore \ tf-breakin LIBS= libbase libcommon libload libprintf libtiffs SUBDIR= ${ALLPROGS} ${LIBS} default: ${FOR_LOADTOOLS} all: ${ALLPROGS} c139explore: libbase libcommon libprintf c139-lldbg: libbase libcommon libprintf helloapp: libbase libcommon libprintf loadagent: libbase libcommon libload libprintf pirexplore: libbase libcommon libprintf libtiffs ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} install: FRC for i in ${FOR_LOADTOOLS}; 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:
