File: cleanup.sh

package info (click to toggle)
ckon 0.7.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 308 kB
  • sloc: cpp: 820; makefile: 160; sh: 92; python: 28
file content (12 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
#set -v
# files
[ -e Makefile.in ] && rm -v Makefile.in
[ -e configure ] && rm -v configure
[ -e aclocal.m4 ] && rm -v aclocal.m4
# dirs
[ -d build ] && rm -rvf build
[ -d autom4te.cache ] && rm -rvf autom4te.cache
[ -d config ] && rm -rvf config
[ -d bin ] && rm -rvf bin
find . -type f -name ".deps" -exec rm -v {} \;