xref: /btstack/tool/clean_tree.sh (revision 1136e5811684c7927c3062272eb579f9c6447dbd)
1*1136e581SMatthias Ringwald#!/bin/sh
2*1136e581SMatthias RingwaldDIR=`dirname $0`
3*1136e581SMatthias RingwaldBTSTACK_ROOT=$DIR/../
4*1136e581SMatthias RingwaldSRC_FOLDERS="src src/classic src/ble src/ble/gatt-service 3rd-party/bluedroid/encoder/srce 3rd-party/bluedroid/decoder/srce 3rd-party/hxcmod-player 3rd-party/hxcmod-player/mod"
5*1136e581SMatthias Ringwaldfor folder in $SRC_FOLDERS
6*1136e581SMatthias Ringwalddo
7*1136e581SMatthias Ringwald	rm -f $BTSTACK_ROOT/$folder/*.o
8*1136e581SMatthias Ringwalddone
9