+ @echo "code signing all the binaries under bin-$(ARCH) and apple/bin-$(ARCH)"
+ @for file in $(abspath bin-$(ARCH)/*) $(abspath apple/bin-$(ARCH)/*);do \
+ if test -x $$file;then \
+ codesign -s - $$file 1>& /dev/null ; \
+ fi; \
+ done;
+ @echo "done"
+