Differences From Artifact [ac6f726e02]:
- File buildsys.mk.in — part of check-in [78aa5f93ad] at 2011-09-13 00:32:25 on branch trunk — Keep error codes instead of exiting with 1. (user: js, size: 17634) [annotate] [blame] [check-ins using]
To Artifact [b9b6beda36]:
- File buildsys.mk.in — part of check-in [be77b5bfd8] at 2011-09-13 00:33:02 on branch trunk — Delete old .a file before creating a new one. (user: js, size: 17644) [annotate] [blame] [check-ins using]
︙ | |||
223 224 225 226 227 228 229 230 231 232 233 234 235 236 | 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | + | for i in $$ars; do \ dir=".$$(echo $$i | sed 's/\//_/g').objs"; \ rm -fr $$dir; \ done ${STATIC_PIC_LIB} ${STATIC_PIC_LIB_NOINST}: ${EXT_DEPS} ${LIB_OBJS} ${LINK_STATUS} rm -f $@ if ${AR} cr $@ ${LIB_OBJS} && ${RANLIB} $@; then \ ${LINK_OK}; \ else \ ${LINK_FAILED}; \ rm -f $@; \ fi |
︙ |