~ubuntu-branches/debian/squeeze/geany-plugins/squeeze

« back to all changes in this revision

Viewing changes to geanylua/util/real-clean.sh

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-07-10 22:56:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090710225641-xc1126t7pq0jmpos
Tags: upstream-0.17.1
ImportĀ upstreamĀ versionĀ 0.17.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
# Script to clean source directory down to bare-bones...
 
4
 
 
5
rm -rfv '.deps' '.libs' '_libs' 'autom4te.cache' 'configure' 'aclocal.m4' \
 
6
'libtool' 'ltmain.sh' 'Makefile.in' 'Makefile' 'depcomp' 'install-sh' 'missing' \
 
7
*.tar.gz    config.*  stamp-h* $(find -type l) \
 
8
$(find -type f \( -name '*.so*' -or -name '*.dll' -or -name '*.[ao]' -or -name '*.l[ao]' \) )
 
9
 
 
10
 
 
11