# fss-0002

main:
  find ${TA}lib -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find ${TA}bin -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find ${TA}sbin -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find ${TA}toolchain/lib -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find ${TA}toolchain/bin -type f -exec ${TO}bin/strip --strip-debug '{}' ';'

host:
  find /lib -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find /bin -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find /sbin -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find ${TC}lib -type f -exec  ${TO}bin/strip --strip-debug '{}' ';'
  find ${TC}bin -type f -exec ${TO}bin/strip --strip-debug '{}' ';'
