FreeCalypso > hg > freecalypso-sw
view target-utils/Makefile @ 992:a7b0b426f9ca
target-utils: boot ROM UART autodetection revamped
The new implementation should work with both the familiar Calypso C035
boot ROM version found in our regular targets as well as the older
Calypso F741979B version found on the vintage D-Sample board.
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Wed, 30 Dec 2015 21:28:41 +0000 |
parents | 5cff3579814c |
children |
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: