# HG changeset patch # User Mychaela Falconia # Date 1531693236 0 # Node ID b7059379dd87d1e353c6b48d90b7e164728bbff4 # Parent 889745bf8615a0b163adf53ee6c632e2b1fbda9f scripts/mk-component.sh: tool wrappers moved to tms470/toolwrap diff -r 889745bf8615 -r b7059379dd87 scripts/mk-component.sh --- a/scripts/mk-component.sh Sun Jul 15 22:14:07 2018 +0000 +++ b/scripts/mk-component.sh Sun Jul 15 22:20:36 2018 +0000 @@ -59,8 +59,8 @@ fi objname=`basename "$1" .s`.obj helpers/makeline dep $objname "$1" >> $BUILD_DIR/$LIBNAME/Makefile - helpers/makeline cmd ../../toolwrap/asm470 ${ASMFLAGS} "$1" '$@' \ - >> $BUILD_DIR/$LIBNAME/Makefile + helpers/makeline cmd ../../tms470/toolwrap/asm470 ${ASMFLAGS} "$1" \ + '$@' >> $BUILD_DIR/$LIBNAME/Makefile echo >> $BUILD_DIR/$LIBNAME/Makefile OBJS="$OBJS $objname" } @@ -79,8 +79,8 @@ >> $BUILD_DIR/$LIBNAME/Makefile ;; esac - helpers/makeline cmd ../../toolwrap/cl470 -q -c ${CFLAGS} ${CPPFLAGS} \ - "$1" >> $BUILD_DIR/$LIBNAME/Makefile + helpers/makeline cmd ../../tms470/toolwrap/cl470 -q -c ${CFLAGS} \ + ${CPPFLAGS} "$1" >> $BUILD_DIR/$LIBNAME/Makefile case "$objname" in *[A-Z]*) objname_lc=`echo $objname | tr A-Z a-z` @@ -101,7 +101,7 @@ # finish the Makefile helpers/makeline dep $LIBNAME.lib ${OBJS} >> $BUILD_DIR/$LIBNAME/Makefile -echo ' ../../toolwrap/ar470 r $@ $^' >> $BUILD_DIR/$LIBNAME/Makefile +echo ' ../../tms470/toolwrap/ar470 r $@ $^' >> $BUILD_DIR/$LIBNAME/Makefile echo >> $BUILD_DIR/$LIBNAME/Makefile echo 'clean:' >> $BUILD_DIR/$LIBNAME/Makefile echo ' rm -f *.obj *.lib *.c' >> $BUILD_DIR/$LIBNAME/Makefile