diff options
Diffstat (limited to 'pkg_clean.sh')
-rwxr-xr-x | pkg_clean.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pkg_clean.sh b/pkg_clean.sh new file mode 100755 index 0000000..58acc1f --- /dev/null +++ b/pkg_clean.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +find . -name CMakeFiles -exec rm -rf {} \; +find . -name CMakeCache.txt -exec rm -rf {} \; +find . -name Makefile -exec rm -rf {} \; +find . -name cmake_install.cmake -exec rm -rf {} \; +find . -name install_manifest.txt -exec rm -rf {} \; +find . -name *.pc -exec rm -rf {} \; + +find . -name *.so -exec rm -rf {} \; + +rm -rf ./framework/fw-test + +rm -rf ./debian/PKG +rm -rf ./debian/libsync-agent-framework +rm -rf ./debian/libsync-agent-framework-dbg +rm -rf ./debian/libsync-agent-framework-dev +rm -rf ./debian/tmp +rm -rf ./debian/files +rm -rf ./debian/*.log +rm -rf ./debian/*.debhelper +rm -rf ./debian/*.substvars + +rm -rf ../libsync-agent-framework-dbg_0.1.9_armel.deb +rm -rf ../libsync-agent-framework-dev_0.1.9_armel.deb +rm -rf ../libsync-agent-framework_0.1.9_armel.deb +rm -rf ../libsync-agent-framework_0.1.9_armel.changes + |