diff options
author | info-cppsp <[email protected]> | 2017-09-13 13:13:30 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-10-18 22:36:02 +0200 |
commit | a7e24a66b69f02106db00e5392b68c39f5d4eb59 (patch) | |
tree | 60e9f2eeb2aeb942b0521bd86c24cfbffc6e57e7 /autogenclean.sh | |
parent | b00703c2b3b936034f836327ed5f3f1afef7b685 (diff) | |
download | mate-sensors-applet-a7e24a66b69f02106db00e5392b68c39f5d4eb59.tar.bz2 mate-sensors-applet-a7e24a66b69f02106db00e5392b68c39f5d4eb59.tar.xz |
added udisks2 plugin
Diffstat (limited to 'autogenclean.sh')
-rw-r--r-- | autogenclean.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/autogenclean.sh b/autogenclean.sh new file mode 100644 index 0000000..d6a31c8 --- /dev/null +++ b/autogenclean.sh @@ -0,0 +1,17 @@ +#!/bin/bash -e +# +# deletes compile files, so that I can upload the whole folder to github +# use make clean first + +find . -name "Makefile" -exec rm {} \; +find . -name "Makefile.in" -exec rm {} \; +find . -name "autom4te.cache" -exec rm -r {} \; +find . -name ".deps" -exec rm -r {} \; +find . -name "m4" -exec rm -r {} \; +find . -name "*.gmo" -exec rm {} \; +find . -name "POTFILES" -exec rm {} \; +find . -name "Makefile.in.in" -exec rm {} \; +find . -name "stamp-it" -exec rm {} \; +rm ./sensors-applet/config.h*; +rm ./sensors-applet/stamp-h1; +rm ./aclocal.m4 ./compile ./config.* ./configure ./depcomp ./install-sh ./libtool ./ltmain.sh ./missing ./omf.make ./xmldocs.make ./INSTALL; |