FreeCalypso > hg > freecalypso-tools
view target-utils/Makefile @ 416:30f6d1c32c6f
doc/Flash-boot-defect article removed (no longer relevant)
This article is no longer relevant because the issue in question
only affected one (1) defective FCDEV3B board which was not
and never will be sold.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 26 Oct 2018 07:11:08 +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: