blob: eda502f1e2f666fb4a120eed4983b8683b23e5d3 (
plain)
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
|
#!/bin/sh
cd ../..
if [ -f "Makefile" ] ; then
make distclean
fi
rm -rf autom4te.cache
rm -f Makefile
rm -f Makefile.in
rm -f config.h
rm -f config.h.in
rm -f config.log
rm -f config.status
rm -f compile config.guess config.sub
rm -f configure
rm -f install-sh
rm -f ltmain.sh
rm -f missing
rm -f stamp-h1
rm -f aclocal.m4
rm -f depcomp
rm -rf mpu/.deps
rm -f mpu/Makefile
rm -f mpu/Makefile.in
rm -f po/Makefile
rm -f po/Makefile.in
rm -f po/POTFILES
rm -f po/remove-potcdate.sed
rm -f po/stamp-po
rm -f po/*.gmo
rm -f po/*~
rm -f m4/*~
rm -f *~
|