-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathautoclean.sh
More file actions
executable file
·52 lines (44 loc) · 1.02 KB
/
autoclean.sh
File metadata and controls
executable file
·52 lines (44 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
# cleaning up
test ! -f Makefile || make distclean
# delete all temporary and backup files
find . -iname '*~'|xargs rm -f
find . -iname '*.bak'|xargs rm -f
find . -iname '*.lot'|xargs rm -f
find . -iname ".deps"|xargs rm -rf
find . -iname ".libs"|xargs rm -rf
# delete all maintainer generated files
rm -f doc/libdcl.3
# brought in by gettext
rm -f gettext.h
rm -rf intl
rm -f po/POTFILES.in
rm -f po/Makevars.template
# brought in by autopoint
rm -f ABOUT-NLS
rm -rf build
rm -rf intl
find m4/* -prune -not -iname 'ax_*' -not -iname 'Makefile.am'|xargs rm -f
rm -f po/Makefile.in.in
rm -f po/remove-potcdate.sin
# generated by aclocal
rm -f aclocal.m4
# generated by autoconf
rm -f configure
# generated or brought in by automake
rm -f po/*.pot
rm -f po/stamp-po
rm -f po/*.gmo
rm -f aclocal.m4
rm -f configure
rm -rf autom4te.cache
rm -rf build/
find . -name Makefile|xargs rm -f
find . -name Makefile.in|xargs rm -f
rm -f install-sh
rm -f missing
rm -f config.*
rm -f stamp-h1
rm -f depcomp
rm -f ltmain.sh
rm -f libtool