forked from nordugrid/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoclean.sh
executable file
·74 lines (59 loc) · 1.05 KB
/
autoclean.sh
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/sh
make maintainer-clean
rm -fr include/.deps
rm -f nordugrid-arc-*.tar.gz
# Generated by aclocal.
rm -f aclocal.m4
# Copied by libtoolize
rm -f ltmain.sh
rm -f m4/libtool.m4
rm -f m4/ltoptions.m4
rm -f m4/ltsugar.m4
rm -f m4/ltversion.m4
rm -f m4/lt~obsolete.m4
# Generated by autoconf.
rm -f configure
# Generated by automake
find . -name Makefile.in -exec rm -f '{}' \;
# Copied by automake
rm -f config.guess config.sub install-sh missing depcomp
# Generated by gettext
rm -f po/*.gmo
rm -f po/nordugrid-arc.pot
# Copied by gettext/autopoint
rm -f config.rpath ABOUT-NLS
rm -f po/POTFILES.in
pofiles="
boldquot.sed
en@boldquot.header
en@quot.header
insert-header.sin
Makefile.in.in
Makevars.template
quot.sed
remove-potcdate.sin
Rules-quot
"
for i in $pofiles; do rm -f po/$i;done
m4files="
lib-link.m4
lib-prefix.m4
lib-ld.m4
lcmessage.m4
ulonglong.m4
progtest.m4
inttypes-pri.m4
uintmax_t.m4
stdint_h.m4
intdiv0.m4
po.m4
iconv.m4
isc-posix.m4
inttypes.m4
glibc21.m4
gettext.m4
inttypes_h.m4
codeset.m4
nls.m4
"
for i in $m4files; do rm -f m4/$i;done